Facebook FQL。无法从 event_member 获取 eid 列表
我正在尝试从粉丝页面获取事件信息,但从 event_member 数据库中获取任何内容时遇到了麻烦。
我可以通过以下方式从事件数据库中获取正确的信息: 查询:'SELECT eid, name, tagline, pic_small,host, description, start_time, Creator FROM event WHERE eid=EVENTIDNUMBER'
但要获取 eid 查询:'SELECT eid FROM event_member WHERE uid=1289767016'
不返回任何内容。
我真的非常需要这个才能工作。我似乎无法在 Facebook 上取得任何进展,并且对我与 FB 合作的承诺感到非常不满意。
非常欢迎任何帮助。
热熔胶
I am trying to get event information from a fan page, but running into troubles just getting ANYTHING out of the event_member db.
I can get proper information out of the event DB with;
query: 'SELECT eid, name, tagline, pic_small,host, description, start_time, creator FROM event WHERE eid=EVENTIDNUMBER'
but to get the eid(s)
query: 'SELECT eid FROM event_member WHERE uid=1289767016'
returns nothing.
I really really need this to work. I can;t seem to get anywhere with Facebook, and am feeling very unhappy with my commiment to make somthing work with FB.
ANy help is greatley welcomed.
TBR
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要指定事件列表的权限
https://developers.facebook.com/docs/authentication/权限/
you need to specify permissions for events list
https://developers.facebook.com/docs/authentication/permissions/
我使用这个:
我将范围与 user_events 和 Friends_events 一起使用。
但查询不起作用。
我的查询是(设置范围权限后):
I use this:
I use scope with user_events and friends_events.
But the query doesn't work.
My query is (after set scope permission):