繁体   English   中英

在同一编排步骤 Azure B2C 上的声明交换之间切换

[英]Toggling between claims exchanges on the same orchestration step Azure B2C

有没有办法在同一编排步骤的声明交换之间切换? 到目前为止,我在 b2c 方面的经验是,用户旅程仅适用于单向线性路径,并且无法通过一步向后移动。

<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>

它是通过编排步骤的线性单向路径。 您无法返回到先前的编排步骤。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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