在同一编排步骤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>

它是通过编排步骤的线性单向路径。无法返回到上一个编排步骤。

最新更新