Skip to content

Instantly share code, notes, and snippets.

@mfcollins3
Created January 16, 2022 05:24
Show Gist options
  • Save mfcollins3/d25a355113a3dcba620c9cf1095db38e to your computer and use it in GitHub Desktop.
Save mfcollins3/d25a355113a3dcba620c9cf1095db38e to your computer and use it in GitHub Desktop.
JWT issuer
<TechnicalProfile Id="JwtIssuer">
<DisplayName>JWT Issuer</DisplayName>
<Protocol Name="None" />
<OutputTokenFormat>JWT</OutputTokenFormat>
<Metadata>
<Item Key="client_id">{service:te}</Item>
<Item Key="issuer_refresh_token_user_identity_claim_type">objectId</Item>
<Item Key="SendTokenResponseBodyWithJsonNumbers">true</Item>
</Metadata>
<CryptographicKeys>
<Key Id="issuer_secret" StorageReferenceId="B2C_1A_TokenSigningKeyContainer" />
<Key Id="issuer_refresh_token_key" StorageReferenceId="B2C_1A_TokenEncryptionKeyContainer" />
</CryptographicKeys>
<InputClaims />
<OutputClaims />
</TechnicalProfile>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment