Sascha
Sascha

Reputation: 601

integrate Office 365 authentication into asp.mvc

I have a webapplication that implements the authentication with azure ad. This works very well with our own azure ad.

But how is it possible to allow other users to sign in into our application? I don not want to manially assign the users to our active directory for this.

I want a functionality like the auth login like tippsweet.de

how does this work?

Upvotes: 0

Views: 1102

Answers (1)

Fei Xue
Fei Xue

Reputation: 14649

We can build the multiple-tenant app to enable the app for the users on other tenants of any organization on Azure AD.

We can enable the 'multiple-tenant' option on the Azure portal like figure below: enter image description here

And below are two helpful articles about developing multiple-tenant app integrate with Azure AD:

Build a multi-tenant SaaS web application using Azure AD & OpenID Connect

Integrating applications with Azure Active Directory

Upvotes: 1

Related Questions