OAuth 请求和访问令牌
我想在我的网站中实现oauth 1
,我只是想知道是否 一旦将请求令牌
交换为访问令牌
,我就必须更改它吗?
提前致谢
I want to implement oauth 1
in my website and I was just wondering if
I have to change the request token
once it was exchange to an access token
?
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请求令牌是临时且唯一的。发出后,一旦 a) 几分钟过去了或 b) 它被用来请求访问令牌,您就应该忘记它。允许重复使用请求令牌将使您面临 http 重放攻击。
OAuth 1.0 规范的第 6 节详细说明了这一点:
Request tokens are meant to be temporary and unique. After giving one out, you should forget all about it once either a) a few minutes have passed or b) it was used to request an access token. Allowing reuse of request tokens would open you up to http replay attacks.
Section 6 of the OAuth 1.0 spec spells this out: