阅读 Facebook 页面帖子和令牌到期时间
我需要从服务器读取特定粉丝页面的流。 我尝试阅读图表 api https://graph.facebook.com//feed?access_token=&limit=100 它有效。 我需要的是了解令牌是否会过期以及如何以编程方式更新它。 现在我通过 http://developers.facebook.com/tools/explorer/ 应用程序。 你能帮我吗? 我正在使用 PHP sdk 谢谢, 一个。
I need to read, from a server, the stream of a specific fan page.
I tried to read the graph api
https://graph.facebook.com//feed?access_token=&limit=100
and it works.
What I need is to understand if the token will expire and how to renew it programmatically.
Now I generate my token through the http://developers.facebook.com/tools/explorer/ app.
Can you please help me?
I'm using the PHP sdk
thanks,
a.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用下面的代码读取facebook页面,也可以获取指定的字段
或
下面是四种情况的解决方案
1.令牌在过期时间后过期(默认2小时) .
2.用户更改密码,导致访问令牌失效。
3.用户取消对您的应用程序的授权。
4.用户退出Facebook。
为了确保用户获得最佳体验,您的应用需要准备好捕获上述场景的错误。以下 PHP 代码向您展示了如何处理这些错误并检索新的访问令牌。
当您将用户重定向到身份验证对话框时,如果用户已经授权您的应用程序,则不会提示用户授予权限。 Facebook 将向您返回一个有效的访问令牌,而无需任何面向用户的对话框。但是,如果用户取消了您的应用程序的授权,则用户将需要重新授权您的应用程序才能获取 access_token。
有关更多详细信息,您可以访问此链接
谢谢
You can read the facebook page using below codes and you can also get the specified fields
or
Below is the solution for four scenarios
1.The token expires after expires time (2 hours is the default).
2.The user changes her password which invalidates the access token.
3.The user de-authorizes your app.
4.The user logs out of Facebook.
To ensure the best experience for your users, your app needs to be prepared to catch errors for the above scenarios. The following PHP code shows you how to handle these errors and retrieve a new access token.
When you redirect the user to the auth dialog, the user is not prompted for permissions if the user has already authorized your application. Facebook will return you a valid access token without any user facing dialog. However if the user has de-authorized your application then the user will need to re-authorize your application for you to get the access_token.
for more details info you can visit this link
Thanks