Home > database >  Azure for authentication to multiple applications using the organization's identity provider
Azure for authentication to multiple applications using the organization's identity provider

Time:01-18

I want to use Azure for authentication to multiple web applications using the organisation's identity provider.

Organisation has already developed identity provider, but I want to use Azure to authenticate all applications through Organisation's identity provider.

I can see Azure AD B2C option, but I don't want to use any social identities or local Azure identities.

Scenario want to work as below.

User enter enter image description here

CodePudding user response:

Basically I have followed this article: https://learn.microsoft.com/en-us/azure/active-directory-b2c/add-identity-provider#select-an-identity-provider

Reference Image: https://learn.microsoft.com/en-us/azure/active-directory-b2c/media/add-identity-provider/external-idp.png

Here we can see, local account login option (with username/password ) which I am not using.

Basically seemless redirection page looks weird, if we have only 1 sign in option. How can I avoid unwanted things from that page?

In short, if there is any way to redirect to IDP ( in this image facebook login) , without going to Sign in options page(seemless redirection in figure)? I am looking for this, because I have only 1 option to sign in, i don't want to use local account login or any other IDPs here.

  • Related