在 OAuth 和 OpenID 之间,我需要保留令牌吗?
我正在创建一个网站,允许用户将 Facebook/Twitter/Google 等注册/链接到他们的帐户。
通过 OpenID 和 OAuth/OAuth2 授权时,我需要保留哪些令牌才能确保应用程序可以更新其 Facebook 状态/Twitter 墙?
I'm creating a site that allows users to register/link Facebook/Twitter/Google etc to their accounts.
When authorizing via OpenID and OAuth/OAuth2, what tokens do I need to preserve so that I can make sure the app can update their Facebook status / Twitter wall?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在所有情况下,您都需要注意保留
access_token
。该令牌基本上是任何握手机制的最后一部分,借助它,您将能够与 Open-ID/OAuth 进行通信派对。Well all you need to take care of preserving the
access_token
in all cases.This token is basically last part of any handshaking mechanism and with the help of this you will able to communicate with the Open-ID/OAuth party.