Android Facebook GetEvents图形api

Android Facebook GetEvents图形api,android,facebook,facebook-graph-api,Android,Facebook,Facebook Graph Api,我正在编写一个android应用程序,我需要将添加事件功能集成到其中。我在graph api文档中搜索了如何发布数据,但是当我尝试发布数据时,我得到了FileNotFound-eception。我正在将所需数据发布到URL“https://graph.facebook.com/me/events". 如果有人能给我一个小的代码片段,那将非常有帮助。。提前感谢。代码如下所示: Bundle params=新Bundle() 参数putString(“名称”、“我的事件”) 参数putString(

我正在编写一个android应用程序,我需要将添加事件功能集成到其中。我在graph api文档中搜索了如何发布数据,但是当我尝试发布数据时,我得到了FileNotFound-eception。我正在将所需数据发布到URL“https://graph.facebook.com/me/events". 如果有人能给我一个小的代码片段,那将非常有帮助。。提前感谢。

代码如下所示:

Bundle params=新Bundle()

参数putString(“名称”、“我的事件”)
参数putString(“位置”、“某处、测试”)
参数putString(“开始时间”,“2011-07-29T10:13:00”)
参数putString(“结束时间”,“2010-07-29T10:20:00”)

请求(“我/事件”,参数,“帖子”)

我希望此代码将帮助您:)