Tools, FAQ, Tutorials:
Azure AD v1 id_token Decoded Example
Where to find an Azure AD v1.0 id_token decoded example?
✍: FYIcenter.com
Here is an example of an "id_token" value returned from Azure AD v1.0
after Base64URL decoded:
Header =
{ "typ": "JWT",
"alg": "RS256",
"x5t": "i6lGk3FZzxRcUb2C3nEQ7syHJlY",
"kid": "i6lGk3FZzxRcUb2C3nEQ7syHJlY"
}
Body =
{
"aud": "ef1da9d4-ff77-4c3e-a005-840c3f830745",
"iss": "https://sts.windows.net/fa15d692-e9c7-4460-a743-29f29522229/",
"iat": 1537233106,
"nbf": 1537233106,
"exp": 1537237006,
"acr": "1",
"aio": "AXQAi/8IAAAAFm+E/QTG+gFnVxLjWdw8K+61AGrSOuMMF6ebaMj7XO3IbmD3
fGmrOyD+NvZyGn2VaT/kDKXw4MIhrgGVq6Bn8wLXoT1LkIZ+FzQVkJPPLQOV
4KcXqSlCVPDS/DiCDgE222TImMvWNaEMaUOTsIGvTQ==",
"amr": [
"wia"
],
"appid": "75dbe77f-10a3-4e59-85fd-8c127544f17c",
"appidacr": "0",
"email": "AbeLi@microsoft.com",
"family_name": "Lincoln",
"given_name": "Abe (MSFT)",
"idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd0122247/",
"ipaddr": "222.222.222.22",
"name": "abeli",
"oid": "02223b6b-aa1d-42d4-9ec0-1b2bb9194438",
"rh": "I",
"scp": "user_impersonation",
"sub": "l3_roISQU222bULS9yi2k0XpqpOiMz5H3ZACo1GeXA",
"tid": "fa15d692-e9c7-4460-a743-29f2956fd429",
"unique_name": "abeli@microsoft.com",
"uti": "FVsGxYXI30-TuikuuUoFAA",
"ver": "1.0"
}
Signature =
...
Detail description of each field can be found in Microsoft article: "ID tokens".
2021-05-16, ∼3021🔥, 0💬
Popular Posts:
How to use urllib.parse.urlencode() function to encode HTTP POST data? My form data has special char...
How to use the "set-variable" Policy Statement to create custom variables for an Azure API service o...
Where to find tutorials on EPUB file format? I want to know how to create EPUB books. Here is a larg...
What is EPUB 2.0 Metadata "dc:creator" and "dc:contributor" elements? EPUB 2.0 Metadata "dc:creator"...
Where to see some Examples of Invalid JSON Values? Here are some Examples of Invalid JSON Values: 1....