Tools, FAQ, Tutorials:
Build Implicit Flow with Azure AD v1
How to implement the OpenID Implicit Flow with Azure AD v1.0 service?
✍: FYIcenter.com
If you want to implement the OpenID Implicit Flow
in your Web application to use Azure AD service,
you should follow these steps:
1. Building the Azure AD v1.0 Sign-on authentication request:
2. Triggering the end user browser to fire the authentication request to https://login.microsoftonline.com/common/oauth2/authorize.
3. Letting the end user sign on to the Active Directory - This is controlled by the Azure AD service. Your application is not involved in this step.
4. Validating the authentication response:
4. Letting the end user to use your application:
Here is a diagram from
"When To Use Which (OAuth2) Grants and (OIDC) Flows"
by Robert Broeckelmann that illustrates nicely about the OpenID Implicit Flow.
Â
⇒ Decode Azure AD v1 id_token
⇠Dump Azure AD v1 Authentication Response
⇑⇑ OpenID Tutorials
2021-05-16, 1072👍, 0💬
Popular Posts:
How to convert JSON Objects to PHP Associative Arrays using the json_decode() function? Actually, JS...
Where Is the Submitted Form Data Stored in PHP? When a user submit a form on your Web server, user e...
Where to find tutorials on RSS specifications? I want to learn it to describe my API services. Here ...
How To Move Uploaded Files To Permanent Directory in PHP? PHP stores uploaded files in a temporary d...
How To Add Column Headers to a Table? If you want to add column headers to a table, you need to use ...