强制注销 facebook oauth

发布于 2024-12-08 21:16:05 字数 279 浏览 0 评论 0原文

我正在使用 https://graph.facebook.com/oauth/authorize?client_id当用户登录并接受应用程序时,它会进入下一页,然后最终使用他的访问令牌将他注销。

我的问题是当用户登录并拒绝该应用程序时。如果访问令牌从未返回,您如何将他注销?

我已经尝试过 javascript 但没有成功。

谢谢。

I'm using https://graph.facebook.com/oauth/authorize?client_id and when the user logs in and accepts the app it goes on to the next page and then finally logs him out using his access token.

My problem is when the user signs in and denies the app. How do you log him out if the access token was never returned?

I've tried the javascript but no luck with that.

Thanks.

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

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

发布评论

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

评论(2

不忘初心 2024-12-15 21:16:05

当用户不允许您注销时,您不能强迫他们注销。

You can't force user to logout when they didn't allow you to do so.

零度℉ 2024-12-15 21:16:05

Facebook 会将任何拒绝该应用程序的用户重定向回您的登录 URL,并指定错误:

如果用户按“不允许”,则您的应用未获得授权。 OAuth
对话框会将用户的浏览器重定向(通过 HTTP 302)到您输入的 URL
传入redirect_uri参数,出现以下错误
信息:

http://YOUR_URL?error_reason=user_denied&
error=access_denied&error_description=The+user+denied+您的+请求。

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

Facebook will redirect any user denying the app back to your login url with an error specified:

If the user presses Don't Allow, your app is not authorized. The OAuth
Dialog will redirect (via HTTP 302) the user's browser to the URL you
passed in the redirect_uri parameter with the following error
information:

http://YOUR_URL?error_reason=user_denied&
error=access_denied&error_description=The+user+denied+your+request.

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

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