Quickstart guide of SaaS app login to azure AD via multitenant architecture

Matias Chaied 1 Reputation point
2020-01-29T13:58:18.113+00:00

I have a SaaS web app that need to implement the multitenant architecture to then login to the azure active directory, is something like that on a quickstart doc or something?

Microsoft Entra ID
Microsoft Entra ID
A Microsoft Entra identity service that provides identity management and access control capabilities. Replaces Azure Active Directory.
19,473 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Saurabh Sharma 23,676 Reputation points Microsoft Employee
    2020-01-29T19:05:47.693+00:00

    You can refer to documentation - How to: Sign in any Azure Active Directory user using the multi-tenant application pattern to create a multi-tenant app. Basically, you need to make the following changes achieve the same -

    1. Update you application registration to be multi-tenant.
    2. Modify your code to use the /common endpoint and to handle multiple issuer values
    3. User/Admin consent to create a service principal in the user's tenant and make few code changes for the same.

    The above documentation provide detailed steps to create a multi-tenant app.

    You can also refer to the sample app here.