I'm trying to use a SAML relying party and send a custom UI content definition parameter, as disccribed in the docs. https://learn.microsoft.com/en-us/azure/active-directory-b2c/customize-ui-with-html?pivots=b2c-custom-policy
Example:
<RelyingParty>
<DefaultUserJourney ReferenceId="SignUpOrSignIn" />
<UserJourneyBehaviors>
<ContentDefinitionParameters>
<Parameter Name="campaignId">{OAUTH-KV:campaignId}</Parameter>
</ContentDefinitionParameters>
</UserJourneyBehaviors>
...
</RelyingParty>
OAUTH-KV
doesnt work with SAML (obvisously).
Is there any other way of getting a parameter sent with SAML that I can use as a ContentDefinitionParameter?
FYI we are already using {SAML:ProviderName}
, {SAML:Issuer}
and {SAML:Subject}
for other purposes.