Tools, FAQ, Tutorials:
What Are Authentication Flows
What are authentication flows specified in OpenID Connect?
✍: FYIcenter.com
OpenID Connect supports 3 authentication data flows:
1. Authorization Code Flow - The Authorization Code Flow is more complex to implement. But it is more secure. In the Authorization Code Flow, only a short authorization code is returned to the User Agent from the OpenID Provider. The actual authentication information is returned to the Reply Party only.
2. Implicit Flow - The Implicit Flow is simple to implement. But it is less secure. In the Implicit Flow, the actual authentication information is returned to the User Agent from the OpenID Provider.
3. Hybrid Flow, also called OAuth 2.0 Multiple Response Type Encoding Practices - In the Hybrid Flow, some authentication information is returned to the User Agent from the OpenID Provider. And additional authentication information is returned to the Reply Party.
⇒ OpenID Connect Authorization Code Flow
⇐ Components Involved in OpenID Connect Authentication
2019-01-15, 443👍, 0💬
Popular Posts:
How To Read Data from Keyboard (Standard Input) in PHP? If you want to read data from the standard i...
How to add request URL Template Parameters to my Azure API operation 2017 version to make it more us...
How To Submit Values without Using a Form in PHP? If you know the values you want to submit, you can...
Where to find tutorials on Using Azure API Management Developer Portal? Here is a list of tutorials ...
What Is session_register() in PHP? session_register() is old function that registers global variable...