Balaraju Polaki
Balaraju Polaki

Reputation: 133

How to restrict other active directory user in multi tenant application

I have enabled multi tenant access to my app in azure portal and now i'm able to access my app from other active directory users.I mean multi tenant access is working. I enabled multi tenant access to my app like as shown in image:

But now i need to restrict some user from other tenants. I tried so many articles but i didn't get correct result

I followed this article but here i didn't get how to add users to the Tenant restrictions in this url

Any answer appreciated

Thanks in Advance......!

Upvotes: 1

Views: 533

Answers (1)

Shawn Tabrizi
Shawn Tabrizi

Reputation: 12434

AAD Enables you, as an Administrator of a Tenant, to control which applications users in your tenant are able to access.

However, it does not enable you, as a Multi-Tenant App Developer, to control what kinds of tenants or users can authenticate to your app. Instead, you must build that logic into your application, using details from the Graph API to learn about the logged in user, which tenant they are from, what groups they are a part of, etc...

Microsoft Graph Overview

Upvotes: 3

Related Questions