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