如何使用 OpenId 执行 OAuth2
我们希望使用 Google 在我们网站上提供的服务进行身份验证和授权。 OAuth 1.0 可以通过 OpenId Hybrid 扩展与 OpenId 结合。 OAuth2.0能否实现同样的功能? (使用 OpenId 身份验证进行 OAuth2)
We want to do authentication and authorization with services Google provided on our website.
OAuth 1.0 can be combined to OpenId through OpenId Hybrid extension.
Can we achieve the same function for OAuth2.0? (do OAuth2 with OpenId authentication)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
“OpenID Connect”将是您所需要的。
http://openidconnect.com/
它基本上是 OAuth2,并在访问令牌响应中为您提供 OpenID 标识符。
它还为您提供了一个“配置文件属性”API 端点,可以使用访问令牌进行访问。
然而,该规范尚未准备好实施。
这需要时间,因为 OpenID 社区总是很慢。
"OpenID Connect" will be what you need.
http://openidconnect.com/
It's basically OAuth2 and gives you OpenID identifier in access token response.
It also gives you an "profile attributes" API endpoint which is accessible using access token.
However, the spec is not ready to implement.
It'll take time, since OpenID community is always slow.