Fill in the properties below, and hit the "Generate JWT" button below.
Part of the value with AAD B2C tokens is that they are highly customizable as to what claims you want so this sample is really just a minimal JWT.
Part of the value with AAD B2C tokens is that they are highly customizable as to what claims you want so this sample is really just a minimal JWT.
A JSON representation of what the deserialized token will look like (not the actual token since this text is pre-generated).
The token will be signed with a certificate as defined in appsettings.json.
The token will be signed with a certificate as defined in appsettings.json.
{
"alg": "RS256",
"kid": "placeholder",
"typ": "JWT"
}.{
"ver": "1.0",
"iss": "https://contoso.b2clogin.com/9122040d-6c67-4c5b-b112-36a304b66dad/v2.0",
"sub": "6aff436f-5e5b-4549-889f-69303f7d4381",
"aud": "6cb04018-a3f5-46a7-b995-940c78f5aef3",
"exp": 1769404638,
"iat": 1769401038,
"nbf": 1769401038,
"auth_time": 1769401038,
"name": "John Doe",
"family_name": "Doe",
"given_name": "John",
"idp": "Contoso B2C",
"acr": "B2C_1A_CustomPolicy",
"nonce": "defaultNonce"
}
Generated token