Teams Admin not recognized as Admin for scope grant

Daniel Van Tassell 0 Reputation points
2024-09-04T22:20:56.9166667+00:00

I have an Azure app the requires granting a variety of admin scopes.

I have successfully added multiple customers previously by the following steps:

  1. Invite admin to tenant
  2. Grant scope access of app.

However, I have one customer that I have checked is assigned global admin permission for their teams app. When they go to grant scopes, they're rejected with an error message saying they need an admin. Inspecting the admins of the account, they are the admin. I also tried with a secondary admin account, and received the same error message.
The app does require an account admin to approve, which makes sense as this application leverages admin level scopes. Their IT showed me the users of the app, and the attached permissions for the admin@handle in question and it said its a global admin.

The scope grant briefly flashes the box preparing to ask for grant, but within milliseconds, it brings up the response:
Screenshot 2024-09-04 at 4.17.28 PM

Any suggestions? It should be straight forward assuming they're an admin, which I checked multiple times.

Microsoft Teams Development
Microsoft Teams Development
Microsoft Teams: A Microsoft customizable chat-based workspace.Development: The process of researching, productizing, and refining new or existing technologies.
3,244 questions
Microsoft Intune Application management
Microsoft Intune Application management
Microsoft Intune: A Microsoft cloud-based management solution that offers mobile device management, mobile application management, and PC management capabilities.Application management: The process of creating, configuring, managing, and monitoring applications.
941 questions
Microsoft Entra
Microsoft Entra ID
Microsoft Entra ID
A Microsoft Entra identity service that provides identity management and access control capabilities. Replaces Azure Active Directory.
21,651 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Raja Pothuraju 6,170 Reputation points Microsoft Vendor
    2024-09-06T23:46:44.7633333+00:00

    Hello @Daniel Van Tassell,

    Thank you for posting your query on Microsoft Q&A.

    I understand that users are encountering a "Need Admin Approval" message when trying to access the application. Despite signing in with a Global Administrator account and granting consent for the required scopes, users continue to see the same screen.

    There are 2 most common causes.

    You will need to get a URL of a sign-in page to determine the cause. Either users are redirected as a whole page or with a popup, users can see a URL starting with https://login.microsoftonline.com”. If the app skips the page automatically, collecting log with F12(.har) or fiddler will be helpful. We will check 2 parameters — ‘prompt’ and ‘scope’.

    User's image

    EXAMPLE: “https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id={AppID}&response_type=code&redirect_uri={RedirectURI}&response_mode=fragment&scope=openid profile email user.read mail.read&state=12345&nonce=12345&prompt=consent NOTE: You can replace {AppID} with the appID(clientID) of the app shown on Entra ID-App registration-Overview. You can replace {RedirectURI} with any redirectURI of the app shown on Entra ID-App registration-Authentication.

    Cause 1: The prompt=consent Parameter

    If the app request to Entra ID includes prompt=consent, Entra ID will prompt for consent even if admin consent has already been granted.

    Solution for Cause 1: The app vendor or owner should remove the prompt=consent parameter from the request to Entra ID. For more information, refer to the https://learn.microsoft.com/en-us/entra/identity-platform/v2-oauth2-implicit-grant-flow

    Cause 2:

    In the ‘scope’ parameter, there is one or more permissions that are NOT admin consented. In this case, users will see the error when they cannot grant consent by themselves.

    Solution for Cause 2:

    You will need to grant admin consent to permissions requested but not admin consented.

    Let’s find out how to do that. You can compare permissions requested in the URL and the permissions admin consented to the app.

    When you see the URL above, ‘scope’ parameter includes 5 permissions as below. ‘openid profile email user.read mail.read’.

    When you go to Azure Portal — Entra ID- Enterprise app — Search the app having issue — Permissions.

    User's image

    In my case, there are 4 permissions as below are admin consented. ‘openid profile email user.read’

    Yes, mail.read is NOT admin consented. As the user cannot grant consent to the permission, the user got the error.

    Now, let’s grant admin consent to the app. Mostly, clicking “Grant admin consent <ORG name>” doesn’t resolve the issue. When admin clicks the button, the request goes to /adminconsent endpoint as below.

    https://login.microsoftonline.com/{tenant-id}/adminconsent?client_id={client-id}

    This endpoint pulls permissions that registered in the App Registration of the app. If there is no permission or only a part of permission are registered there, clicking “Grant admin consent <ORG name>” won’t grant admin consent to mail.read and the issue will persist.

    We need to use /authorize endpoint to grant permission dynamically. Reference: https://learn.microsoft.com/en-us/previous-versions/azure/active-directory/azuread-dev/azure-ad-endpoint-comparison#incremental-and-dynamic-consent

    Global admin can go to the URL that the user had issue and grant admin consent. NOTE: The global admin MUST check “Consent on behalf of your organization”, and click Accept. If it is not checked, consent will be granted only for the global admin account, the issue will persist for other users.

    “https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id={AppID}&response_type=code&redirect_uri={RedirectURI}&response_mode=fragment&scope=openid profile email user.read mail.read&state=12345&nonce=12345&prompt=consent”

    User's image

    Then you can go back to Azure Portal — Entra ID- Enterprise app — Search the app having issue — Permissions and confirm if all permissions were successfully admin consented.

    I hope this information is helpful. Please feel free to reach out if you have any further questions.


    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".

    Thanks,
    Raja Pothuraju.


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.