访问用户的活动邀请
我正在开发一个应用程序,它允许用户更好地管理他们的事件。然而,在阅读了 Facebook 的 Graph API、FQL 和 Legacy REST API 文档后,我没有找到一种方法来获取用户已被邀请但尚未响应的事件。
有什么可能的方法来实现这一目标吗?
I am developing an application which would allow a user to better manage their events. However, after reading Facebook's Graph API, FQL and Legacy REST API documentations I did not find a way to obtain the events to which a user has been invited but not yet responded.
Is there any possible way to achieve that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于某种原因,Facebook API 文档中没有涵盖这一点,但在
/me/events/not_replied
图形路径上进行查询就可以解决问题。/me/events/{declined|maybe|attending}
也可以用作/me/events
路径上的过滤器,并且几乎可以解释自己。有趣的是,这三个事件都包含在默认的/me/events
中,但来自/me/events/not_replied
的事件则不然。For some reason this is not covered in the Facebook API docs, but doing a query on the
/me/events/not_replied
graph path does the trick./me/events/{declined|maybe|attending}
also work as filters on the/me/events
path and pretty much explain themselves. Interestingly enough those three are included in the default/me/events
but the events from/me/events/not_replied
are not.