离线模式下可以读取FB API信息吗?
我知道FB允许离线模式,但是如何操作呢?
I know FB allows offline mode, but how to work it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我知道FB允许离线模式,但是如何操作呢?
I know FB allows offline mode, but how to work it?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
当获得用户通过 Facebook 登录您的应用程序的访问权限时,您需要在 API 调用中请求离线访问权限。您从 FB 返回的身份验证令牌有一个过期时间 - 如果用户授予您离线访问权限,则该过期时间将设置为无限。
有关离线访问的更多信息,请参阅:https://developers.facebook.com/docs/authentication/< /a> 和 https://developers.facebook.com/docs/authentication/permissions/(参见部分在写权限下)
When getting access permissions from a user to login to your app via facebook, you need to ask permission for offline access in your API call. The auth token that you get back from FB has an expiry on it - if the user gives you offline access permissions, that expiry time is set to be infinite.
For more info on offline access, refer: https://developers.facebook.com/docs/authentication/ and https://developers.facebook.com/docs/authentication/permissions/ (see section under Write Permissions)