Facebook API /me/events 中无法获取您尚未响应的事件。为什么?

发布于 2024-10-18 09:07:28 字数 101 浏览 1 评论 0原文

Facebook API /me/events 中无法获取您尚未响应的事件。为什么?

只有我点击的事件:也许/否/是才会显示在图形 API 中。如何获取这些我未响应的事件?

in Facebook API /me/events fails to get events that you have not responded to. why?

Only events where I have clicked: maybe/no/yes does it show up in the graph api. How can I get these events that I have not responded to?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

热情消退 2024-10-25 09:07:28

实际上,您可以通过此网址访问您已收到但未回复的事件(假设您获得了“user_events”权限):
https://graph.facebook.com/me/events/not_replied

Actually you can access the events you have received but not replied with this url (assuming you got the "user_events" permission):
https://graph.facebook.com/me/events/not_replied

栩栩如生 2024-10-25 09:07:28

您可以使用如下 FQL 查询来检索有关用户已被邀请但未响应的事件的信息:

SELECT eid,name,description,start_time,end_time,venue 
    FROM event 
    WHERE eid 
    IN (
        SELECT eid 
            FROM event_member 
            WHERE uid=me() 
            AND rsvp_status='not_replied'
       )

You can retrieve information about the events that a user has been invited to, but not responded to, using an FQL query like this:

SELECT eid,name,description,start_time,end_time,venue 
    FROM event 
    WHERE eid 
    IN (
        SELECT eid 
            FROM event_member 
            WHERE uid=me() 
            AND rsvp_status='not_replied'
       )
思念绕指尖 2024-10-25 09:07:28

查看文档,似乎不可能获取尚未被用户标记的事件。

活动:该用户正在参加的活动

http://developers.facebook.com/docs/参考/api/用户/

Looking at the docs, it seems that it's not possible to get the events that have not been flagged by the user.

Events: The events this user is attending

http://developers.facebook.com/docs/reference/api/user/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文