使用 http auth 和第三方 OAuth 提供商保护 REST API
目前我有一个网络应用程序,它提供用户名/密码登录或通过 Twitter OAuth 登录。我想为此应用程序添加 REST API。是否可以(并且有意义)通过 Twitter 为 REST API 用户提供 OAuth 登录? 受到这篇文章的启发 我考虑以下身份验证流程。用户可以通过 HTTP 身份验证和/或 OAuth 登录:
我为此问题创建了一个示例工作流程: https:// i.sstatic.net/EM446.png
At the moment I have a webapp which offers username/password login or login via Twitter OAuth. I want to add an REST API for this application. Is it possible (and makes it sense) to offer an OAuth login via Twitter for REST API users?
Inspired by this post I think about the following authentication flow. Users can login via HTTP authentication AND/OR OAuth:
I created a sample workflow for this problem: https://i.sstatic.net/EM446.png
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
正如您在有关身份验证流程的文章中提到的,您应该查看 OpenID,而不是 OAuth。
As mentioned in the post you referenced about the authentication flow, you should be looking at OpenID, not OAuth.