简体   繁体   English

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

[英]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.到目前为止,我在 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>

It is a linear one way path through the orchestration steps.它是通过编排步骤的线性单向路径。 You cannot go back to a previous orchestration step.您无法返回到先前的编排步骤。

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

相关问题 Azure自定义策略B2C - 业务流程步骤 - Azure Custom Policy B2C - Orchestration step Azure B2C 索赔未通过 - Azure B2C Claims are not coming through Azure b2c AADB2C90108:业务流程步骤“1”未指定 CpimIssuerTechnicalProfileReferenceId,而预期的却是。\r\n相关性 - Azure b2c AADB2C90108: The orchestration step '1' does not specify a CpimIssuerTechnicalProfileReferenceId when one was expected.\r\nCorrelation 能否在 Azure AD B2C 自定义策略中的步骤之间传递密码声明? - Can you pass password claims between steps in Azure AD B2C Custom Policies? Azure Active Directory B2C自定义邀请策略 - 在步骤之间传递自定义声明 - Azure Active Directory B2C Custom Invite Policy - Passing Custom Claims Between Steps Azure Ad b2c:成功登录azure ad b2c后在Claims中获得email - Azure Ad b2c: Get email in Claims after successfully Signin in azure ad b2c 如何将自定义声明添加到 azure b2c 访问令牌? - How to add custom claims to azure b2c access token? Azure B2C - MSAL - 使用更新的声明获取 ID 令牌 - Azure B2C - MSAL - Fetch ID Token with updated claims Azure B2C 和 ADFS 作为身份提供者的声明 - Claims from Azure B2C and ADFS as an Identity Provider 在角度应用程序中获取Azure B2C自定义声明 - Get azure b2c custom claims in angular application
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM