Created
February 20, 2019 03:03
-
-
Save rbrayb/59b73a204a4e139d142c6c2cee026dbf to your computer and use it in GitHub Desktop.
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
| <RelyingParty> | |
| <DefaultUserJourney ReferenceId="PasswordResetJWT" /> | |
| <TechnicalProfile Id="PolicyProfile"> | |
| <DisplayName>PolicyProfile</DisplayName> | |
| <Protocol Name="OpenIdConnect" /> | |
| <InputTokenFormat>JWT</InputTokenFormat> | |
| <CryptographicKeys> | |
| <Key Id="client_secret" StorageReferenceId="B2C_1A_JWTSigningKeyContainer" /> | |
| </CryptographicKeys> | |
| <InputClaims> | |
| <InputClaim ClaimTypeReferenceId="email" /> | |
| </InputClaims> | |
| <OutputClaims> | |
| <OutputClaim ClaimTypeReferenceId="email" /> | |
| <OutputClaim ClaimTypeReferenceId="objectId" PartnerClaimType="sub"/> | |
| </OutputClaims> | |
| <SubjectNamingInfo ClaimType="sub" /> | |
| </TechnicalProfile> | |
| </RelyingParty> | |
| </TrustFrameworkPolicy> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment