After following this tutorial to setup AD B2C multi-tenant for Microsoft sign in: Set up sign-in for multitenant Microsoft Entra ID using custom policies in Azure Active Directory B2C, we encountered this issue:
Actual result: AD B2C automatically sign-in as account A. The similar behavior happens here: B2C Live Demo
Is there a way for us to configure AD B2C custom policy to always show Microsoft Pick an account
page and choose which Microsoft user to sign in then? Thanks.
FYI, this answer works for me:
<ClaimType Id="prompt"> <DataType>string</DataType> </ClaimType>
<InputClaims> <InputClaim ClaimTypeReferenceId="prompt" PartnerClaimType="prompt" DefaultValue= "select_account"/> </InputClaims>