According docs, if I need include external idp token in a response, I need this code:
<ClaimsProvider>
<DisplayName>Facebook</DisplayName>
<TechnicalProfiles>
<TechnicalProfile Id="Facebook-OAUTH">
<OutputClaims>
<OutputClaim ClaimTypeReferenceId="identityProviderAccessToken" PartnerClaimType="{oauth2:access_token}" />
</OutputClaims>
...
</TechnicalProfile>
</TechnicalProfiles>
</ClaimsProvider>
Are there any explanations about such syntax - PartnerClaimType="{oauth2:access_token}"
? What else can I reference except access_token, refresh_token
? How "object structure" for oauth2
looks like? Does only oauth2
available, or something else also?