Azure AD B2C 自定义策略社交按钮顺序

Azure AD B2C Custom policy social buttons order

我只是想知道有没有什么方法可以在自定义策略中操纵社交登录按钮的顺序? 所以在下面的例子中,不是FB总线MS登录按钮是第一个:

rgds,

'Child

我的大学刚刚找到答案:

UserJourney Id="policyName">
        <OrchestrationSteps>
            <OrchestrationStep Order="1" Type="CombinedSignInAndSignUp" ContentDefinitionReferenceId="api.signuporsignin">
                <ClaimsProviderSelections>
                    <ClaimsProviderSelection ValidationClaimsExchangeId="LocalAccountSigninEmailExchange"/>
                    <ClaimsProviderSelection TargetClaimsExchangeId="SigninwithGoogle"/>
                    <ClaimsProviderSelection TargetClaimsExchangeId="SigninwithFacebook"/>
                    <ClaimsProviderSelection TargetClaimsExchangeId="SigninwithApple"/>
                </ClaimsProviderSelections>
                <ClaimsExchanges>
                    <ClaimsExchange Id="LocalAccountSigninEmailExchange" TechnicalProfileReferenceId="SelfAsserted-LocalAccountSignin-Email"/>
                </ClaimsExchanges>
            </OrchestrationStep>
</OrchestrationSteps>

因此,如果我更改元素的顺序,则登录页面上的按钮顺序也会更改。