Tools, FAQ, Tutorials:
Authentication Flows with Google OpenID Connect
What are Authentication Flows Supported by Google OpenID Connect service?
✍: FYIcenter.com
Google OpenID Connect service supports 3 Authentication Flows:
1. Implicit Flow - The Implicit Flow is simple to implement. But it is less secure. Authentication is done in a single call to Google OpenID Connect service, which returns the "id_token" containing user identity.
2. Authorization Code Flow (Server Flow) - The Authorization Code Flow is more complex to implement. But it is more secure. Authentication is done in two calls to Google OpenID Connect service. The first call returns only an authorization "code". You need to make a second call to exchange "code" for the final "access token".
3. Hybrid Flow, also called OAuth 2.0 Multiple Response Type Encoding Practices - In the Hybrid Flow, you ask for both "id_token" and authorization "code" in the first call. This allows you to mix the Implicit Flow and Authorization Code Flow together.
Â
⇒ Google OpenID Connect Metadata Document
⇠Application Registration for Google OpenID
⇑ Google OpenID Connect Integration
⇑⇑ OpenID Tutorials
2021-03-21, 847👍, 0💬
Popular Posts:
How To Read a File in Binary Mode in PHP? If you have a file that stores binary data, like an execut...
Where Can I get a copy of the RSS XML Schema? RSS XML Schema is an XML Schema that defines how an RS...
How to login to the Developer Portal internally by you as the publisher? Normally, the Developer Por...
How to Instantiate Chaincode on BYFN Channel? You can follow this tutorial to Instantiate Chaincode ...
What is EPUB 3.0 Metadata "dc:publisher" and "dc:rights" elements? EPUB 3.0 Metadata "dc:publisher" ...