skip to Main Content

I would like to show Identity providers dynamically based on the tenant[ i.e OIDC domain_hint] during the Azure B2C Sign In user journey. I have referred several examples on custom policies, however unable to find a way to display/hide an IdP based on tenant. I was able to use this good example to do Home Realm discovery in custom policy using an Azure Function, but it doesn’t show ‘list of IdP’ applicable for the tenant/domain. Other SO questions, that came close to this but didn’t answer are 1, 2. Even if I serve custom HTML file from blob storage, how to show only certain Identity providers and hide some based on the tenant/domain_hint ?

2

Answers


  1. Depending on the number of domains/tenants permutations, you could put that logic on the application side to execute different PolicyID’s. This is assuming the number is low therefore it would be a policyID : IdPs mapping.

    This is a bad solution if you have a HIGH volume of hints.

    Alternatively, you could perform an API call via JavaScript to delegate populating the list of Identity Providers. Then, it would execute another self-assertive page that would trigger that specific identity provider. The flow would look like:

    App (passes domain hint)–> B2C login page (JavaScript REST API on page and request list of IdP’s based on previous domain hint) –> 2nd Self-assertive page (value passed from first page to initiative the correct IdP) –> IdP pages load.

    You can adjust the logic in different ways to meet your needs.

    Login or Signup to reply.
  2. You could store the tenant in a claim using claim resolvers, then have an orchestration step for each possible combination of IdPs you want and use preconditions on those steps to only execute them depending on the tenant. Hopefully that works.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search