我可以在没有用户身份验证的情况下从 Facebook 获取事件列表吗?
我有一个用 PHP 编写的网站。 我需要从 Facebook 页面获取事件列表并将其发布到 PHP 站点的页面上。
此调用有效,但需要访问令牌:
https://graph.facebook.com/mtv/events?access_token=....
我想在 PHP 网站上发布列表,而不需要用户使用 Facebook 登录。 这可能吗?有什么方法可以让我的 PHP 代码中硬编码永久令牌吗?
I have a site written in PHP.
I need to get a list of events from a Facebook page and publish them on a page of the PHP site.
This call works but but it require an access token:
https://graph.facebook.com/mtv/events?access_token=....
I want publish the list on the PHP site without requiring an user to login with Facebook.
Is this possible? Is there any way that I can get a permanent token to hardcode in my PHP code?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
。
我不知道这对于 Graph API 是否有效。
编辑:
我认为你唯一的机会是使用 DOM 解析器并解析 http://www.facebook.com /MTV?v=app_2344061033,这应该不难。
.
I don't know if this is valid for Graph API.
EDIT:
I think your only chance is to use DOM Parser and parse http://www.facebook.com/MTV?v=app_2344061033, this shouldn't be hard at all.
如果它是公共页面,您应该能够使用具有离线访问权限的任何访问令牌来获取事件。
If it is a public page you should be able to get the events using any access token with offline_access rights.