像这样调用api,我只收到用户正在参加的事件。
FBRequestConnection.startWithGraphPath("/me/events")
根据文档(https://developers.facebook.com/docs/graph-api/reference/user/)
,这是有道理的此人的活动。默认情况下,这不包括此人拒绝或未回复的事件
但是,我如何才能将此事件包含在“#34;已拒绝或未回复”的事件中?
答案 0 :(得分:4)
我不确定你能在一次通话中做到这一点,但你可以用三个来做:
/me/events (gets "attending" and "maybe" events)
/me/events/declined (gets "declined" events)
/me/events/not_replied (gets "not_replied" events)
我仍然试图在一次通话中找到一个选项,但这是我现在使用的后备。
答案 1 :(得分:1)
据我所知,在Graph API中没有端点。但是有可能使用FQL,但如果您的应用程序是v2.1或更高版本,则无法再使用FQL。
见