Tools, FAQ, Tutorials:
Authentication Flows with Azure AD v2
What are Authentication Flows Supported by Azure AD v2.0 service?
✍: FYIcenter.com
Azure AD v2.0 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 Azure AD service, which returns the "id_token" containing user identity.
2. Authorization Code Flow - The Authorization Code Flow is more complex to implement. But it is more secure. Authentication is done in two calls to Azure AD 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.
Here is a diagram showing the Azure AD v2.0 Implicit Authentication Flow:
Detail description of Azure AD v2.0 authentication flows can be found in article: "Application types for v2.0".
2021-01-09, ∼2225🔥, 0💬
Popular Posts:
How To Pass Arrays By References? in PHP? Like normal variables, you can pass an array by reference ...
Why I am getting "LNK1104: cannot open file 'MSCOREE.lib'" error when building a C++/CLI program? Vi...
How To Access a Global Variable inside a Function? in PHP? By default, global variables are not acce...
How to create a navigation file like navigation.xhtml for an EPUB 3.0 book? At least one navigation ...
How To Break a File Path Name into Parts in PHP? If you have a file name, and want to get different ...