Skip to content

Instantly share code, notes, and snippets.

@rbrayb
Created February 20, 2019 03:03
Show Gist options
  • Save rbrayb/59b73a204a4e139d142c6c2cee026dbf to your computer and use it in GitHub Desktop.
Save rbrayb/59b73a204a4e139d142c6c2cee026dbf to your computer and use it in GitHub Desktop.
<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