简体   繁体   中英

Toggling between claims exchanges on the same orchestration step Azure B2C

Is there a way to toggle between claims exchanges on the same orchestration step? So far my experience with b2c is that the user journey only works on a one-way linear path and can't move back through a step.

<OrchestrationStep Order="2" Type="ClaimsProviderSelection" ContentDefinitionReferenceId="api.providerselection-phoneoremail">
    <ClaimsProviderSelections>
        <ClaimsProviderSelection TargetClaimsExchangeId="SignUpEmail" />
        <ClaimsProviderSelection TargetClaimsExchangeId="SignUpPhone" />
    </ClaimsProviderSelections>
    <ClaimsExchanges>
        <ClaimsExchange Id="SignUpEmail" TechnicalProfileReferenceId="SelfAsserted-CollectEmail" />
        <ClaimsExchange Id="SignUpPhone" TechnicalProfileReferenceId="SelfAsserted-CollectPhone" />
    </ClaimsExchanges>
</OrchestrationStep>

It is a linear one way path through the orchestration steps. You cannot go back to a previous orchestration step.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM