How to authenticate multiple active directory user on single application in azure -
i have created 2 active directory in azure connect 2 different local active directory (two different companey)
i have application in want both azure active directory user can login on same instance of application don't want host 2 instance of application .
after authentication need to check active directory user belongs .
any appreciated since struggling last 3 days
you need create multi-tenant application, pksorensen's comment states. want register application in 1 of directories , update configuration make multi-tenant capable (discussed in links below). when user directory signs in application, app starts consent flow hitting azure ad's common authentication endpoint (different tenant-specific one), , displays consent dialog. after user consents, azure ad registers application in other directory.
all information need implementing scenario:
- brand new code sample multi-tenant web application sign-on
- info multi-tenant apps, how make application multi-tenant, , consent experience
- the authentication scenarios azure ad topic , web browser web application section describes technical details of protocol flow , how works
Comments
Post a Comment