Difference between Google “OpenID Connect” and “sign-in with Google”?

余生颓废 提交于 2019-12-04 23:34:15
bludelft

A comparison of the two is available here.

Google+ Sign-In with profile scope

  • Has Google client libraries for authenticating with OAuth 2.0, which includes support for Google+ and other Google services (like getting social information on a user). Also this can make implementing easier and requires less boiler plate code
  • Has the Google+ Sign-In button to simplify sign-in Has no pre-built widgets
  • Supports over-the-air Android installs

OAuth login is primarily just for authentication at a lower level, that is by making raw HTTP requests, no API.

OpenID Connect protocols (OAuth 2.0 login) Google+ Sign-In supports OIDC interoperability if you configure with the openid scope and get the user profile using getOpenIdConnect.

OAuth 2.0 login supports OIDC directly. Use it for signing in users to apps that do not need social features and run on platforms not supported by Google+ Sign-In.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!