Skip to content

Instantly share code, notes, and snippets.

@mfcollins3
Created January 21, 2022 06:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mfcollins3/d4cb5417a225292465fd8f1e4a2781d7 to your computer and use it in GitHub Desktop.
Save mfcollins3/d4cb5417a225292465fd8f1e4a2781d7 to your computer and use it in GitHub Desktop.
JWTIssuer technical profile for B2C
<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