我正在帮助一位朋友创建一个场地,该场地列出了 FB 上的所有活动,包括位置、门票 URI、时间等。
我找到了很多关于如何获取数据的信息,但我不清楚如何在不登录 FB 的情况下获取公共事件。
我需要什么类型的令牌才能让网站简单地提取事件数据并将其显示给访问者?
基本上,我试图做的是显示一组即将发生的事件,并假设该站点的访问者没有登录到 FB。
在此页面上,https://developers.facebook.com/docs/reference/fql/event上,它说:
权限
要阅读您需要的事件表:
a generic access_token for public events (those whose privacy is set to OPEN)
a user access_token with user_events permission for a user who can see the event for non-public events
an app access_token with user_events permission (for non-public events, must be the app that created the event)
a page access_token with user_events permission (for non-public events, must be the page that created the event)
我真的不希望获得有关代码的帮助,我只是无法弄清楚访问/身份验证过程是如何工作的。
看起来 FQL 可能是最好的选择,所以我可以根据日期范围进行查询,但是唉,我被困在 access/auth/token 部分。
我需要具备哪些条件才能在第 3 方网站上列出主页的活动?
如果有人在那里有任何建议,我将不胜感激。谢谢。