Tools, FAQ, Tutorials:
Azure AD B2C "id_token" from Google
Where to find an Azure AD B2C "id_token" example from Google as an external identity provider?
✍: FYIcenter.com
Here is an Azure AD B2C "id_token" example from Google
as an external identity provider:
Header:
{
"typ": "JWT",
"alg": "RS256",
"kid": "X5eXk4xyojNFum1kl2Ytv8dlNP4-c57dO6QGTVBwaNk"
}
Claims:
{
"exp": 1547856981,
"nbf": 1547853381,
"ver": "1.0",
"iss": "https:\/\/xxx.b2clogin.com\/f954e657-...\/v2.0\/",
"sub": "bbe4c9c3-...",
"aud": "5e7ed55a-...",
"nonce": "1234567",
"iat": 1547853381,
"auth_time": 1547853381,
"given_name": "Joe",
"family_name": "Doe",
"name": "Joe Doe",
"idp": "google.com",
"oid": "bbe4c9c3-...",
"postalCode": "02169",
"emails": [
"xxx@gmail.com"
],
"tfp": "B2C_1_MyLogin"
}
2019-04-11, ∼2126🔥, 0💬
Popular Posts:
How to use the "@(...)" expression in Azure API Policy? The "@(...)" expression in Azure API Policy ...
How to use the "return-response" Policy statement to build the response from scratch for an Azure AP...
What is EPUB 3.0 Metadata "dc:publisher" and "dc:rights" elements? EPUB 3.0 Metadata "dc:publisher" ...
How to make application release build with Visual Studio 2017? If you want to make a final release b...
What are "*..." and "**..." Wildcard Parameters in Function Definitions? If you want to define a fun...