Created
January 21, 2022 06:17
-
-
Save mfcollins3/d4cb5417a225292465fd8f1e4a2781d7 to your computer and use it in GitHub Desktop.
JWTIssuer technical profile for B2C
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ClaimsProvider> | |
<DisplayName>Token Issuers</DisplayName> | |
<TechnicalProfiles> | |
<TechnicalProfile Id="JWTIssuer"> | |
<DisplayName>JWT Issuer</DisplayName> | |
<Description>Generates and issues the JSON web token containing the user's identity information</Description> | |
<Protocol Name="OpenIdConnect" /> | |
<OutputTokenFormat>JWT</OutputTokenFormat> | |
<Metadata> | |
<Item Key="issuer_refresh_token_user_identity_claim_type">objectId</Item> | |
</Metadata> | |
<CryptographicKeys> | |
<Key Id="issuer_secret" StorageReferenceId="B2C_1A_TokenSigningKeyContainer" /> | |
<Key Id="issuer_refresh_token_key" StorageReferenceId="B2C_1A_TokenEncryptionKeyContainer" /> | |
</CryptographicKeys> | |
</TechnicalProfile> | |
</TechnicalProfiles> | |
</ClaimsProvider> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment