I have an application using MS Entra authentication using OpenIdConnect . Its deployed on Azure. My Azure App is configured as multi tenanted [Accounts in any organizational directory (Any Microsoft Entra ID tenant – Multitenant)]. I do not have any Toekn configurations.
API permission is User.Read.
When external users trying to login using their SSO , they are prompted with Approval Request. Is there anyway to stop the admin approval and (may be self approval) proceed to my application?
AzureSettings
"AzureAd": {
"Instance": "https://login.microsoftonline.com/",
"TenantId": "organizations",
"ClientId": " - - - - ",
"ClientSecret": " ~ ",
"Domain": "domain.onmicrosoft.com",
"CallbackPath": "/signin-azuread-oidc"
},