Tools, FAQ, Tutorials:
Validate Azure AD v2 id_token
How to validate the id_token value received from Azure AD v2.0 authentication response?
✍: FYIcenter.com
As you can see from the previous tutorials, you can easily decode the
"id_token" value received from Azure AD authentication response using a
simple PHP script.
After decoding, you can get all information about the end user from the body component, and trust it without any validation.
But, since the "id_token" is included in the authentication response delivered over the public Internet, you should not trust it and perform a number validation steps:
1. Data structure validation.
2. Data attributes validation.
3. Timestamp attributes validation. This will prevent someone to repost the authentication response to your server script at a later time.
4. "nonce" protection and validation. This will prevent someone to repost the authentication response again immediately.
5. Signature validation. This is to ensure the entire authentication response message has not been modified by someone else. See next tutorial on how to perform "id_token" signature validation.
Â
⇒ Validate Azure AD v2 id_token Signature
⇠Adding Claims in Azure AD v2 id_token
⇑⇑ OpenID Tutorials
2019-03-27, 1108👍, 0💬
Popular Posts:
How to Create a New Instance of a Class? There are two ways to create a new instance (object) of a c...
How to write a policy to set and get custom variables? Here is a policy that sets and gets custom va...
How to use urllib.parse.urlencode() function to encode HTTP POST data? My form data has special char...
Where to find tutorials on Using Azure API Management Developer Portal? Here is a list of tutorials ...
What properties and functions are supported on http.client.HTTPResponse objects? If you get an http....