Created
January 16, 2022 05:24
-
-
Save mfcollins3/d25a355113a3dcba620c9cf1095db38e to your computer and use it in GitHub Desktop.
JWT issuer
This file contains hidden or 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
<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