Hi @AdamKozmic-7665 ,
Thanks for reaching out.
Did you try to add technical profile for OIDC claims transformation?
<TechnicalProfile Id="GetOidcClaims">
<DisplayName>Get OIDC claims</DisplayName>
<Protocol Name="Proprietary" Handler="Web.TPEngine.Providers.ClaimsTransformationProtocolProvider, Web.TPEngine, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null" />
<Metadata>
<Item Key="IncludeClaimResolvingInClaimsHandling">true</Item>
</Metadata>
<InputClaims>
<InputClaim ClaimTypeReferenceId="id_token" PartnerClaimType="id_token" />
</InputClaims>
<OutputClaims>
<OutputClaim ClaimTypeReferenceId="signInName" PartnerClaimType="sub" />
<OutputClaim ClaimTypeReferenceId="password" PartnerClaimType="password" />
</OutputClaims>
</TechnicalProfile>
and then tried to add that technical profile as first step in your user journey.
In the first step, the claim should come from a self-asserted technical profile or from REST API as the input claim needs to be present in the claims bag.
Hope this will help.
Thanks,
Shweta
Please remember to "Accept Answer" if answer helped you.