Home > Enterprise >  how to increase the limits of permissions requested per application - Azure AD signInAudience
how to increase the limits of permissions requested per application - Azure AD signInAudience

Time:09-13

I am currently developing an app that allows different operations with Microsoft SharePoint, I am using Microsoft Graph and I have registered the App in Azure AD, and it works fine. But my wish is that the App is public and thousands of people can use it, using their Microsoft account.

But reading the documentation of Microsoft Graph I find an article that says that it has Limits of permissions requested by application.

I am currently developing an app that allows different operations with Microsoft SharePoint, I am using Microsoft Graph and I have registered the App in Azure AD, and it works fine. But my wish is that the App is public and thousands of people can use it, using their Microsoft account. But reading the documentation of Microsoft Graph I find an article that says that it has Limits of permissions requested by application

Limits on requested permissions per app

The limit indicated by the documentation is a maximum of 400 for a signInAudience= AzureADMultipleOrgs but I want and aspire to have more users, perhaps thousands of users. What do you recommend I do in this case? I want thousands of users to access the app with their Microsoft account and be able to do different activities.

CodePudding user response:

Those limits are the number of permissions your app registration can have in the API permissions tab. Not the number of users. The number of users is not limited.

  • Related