我可以获得不会过期的 Facebook 授权吗?

发布于 2024-10-01 13:50:27 字数 155 浏览 3 评论 0原文

我希望我网站的用户能够在其个人资料中授权 Facebook 访问权限,以便我们的服务器可以持续使用该授权。我知道如何进行授权部分,但我得到的是一个最终会过期的访问密钥。这将要求用户定期重新登录并重新授权我们。

有没有一种方法可以让用户授予一次授权,从而给我一个不会过期的访问密钥?

I want the users of my website to be able to authorize Facebook access in their profiles, such that our servers can continuously use that authorization. I know how to do the authorization part, but what I get back is an access key that will eventually expire. This would require the user to log back in and re-authorize us periodically.

Is there a way that the user can grant authorization once, giving me an access key that won't expire?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦幻的心爱 2024-10-08 13:50:27

更新

正如评论之一所指出的,offline_access 现已禁用。理解 Facebook 的变化是一个很好的帖子。 https://developers.facebook.com/roadmap/offline-access-removal/

旧答案

如果应用程序未请求offline_access权限,则访问令牌是有时间限制的。当用户退出 Facebook 时,有时间限制的访问令牌也会失效。 如果应用程序已从用户那里获得了offline_access权限,则访问令牌不会过期。但是,每当用户更改其密码时,访问令牌就会失效。

http://developers.facebook.com/docs/authentication/

Update

The offline_access is now disabled as pointed out in one of the comments. To understand the changes Facebook as a nice post. https://developers.facebook.com/roadmap/offline-access-removal/

Old Answer

If the application has not requested offline_access permission, the access token is time-bounded. Time-bounded access token also get invalidated when the user logs out of Facebook. If the application has obtained offline_access permission from the user, the access token does not have an expiry. However it gets invalidated whenever the user changes his/her password.

http://developers.facebook.com/docs/authentication/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文