Rafael
Rafael

Reputation: 140

Admin aproval required even for basic microsoft graph permissions

I have small desktop app made with electron that needs to access the users calendar.

A personal account works just fine but with an organization account I need admin aproval even though I request non admin permissions. This is permission config in the app:

scopes: [
  'user.read',
  'calendars.read'
],

In azure these don't require admin approval. enter image description here but when I login I get this message: enter image description here

Upvotes: 0

Views: 1854

Answers (1)

user2250152
user2250152

Reputation: 20788

The Admin consent required column shows the default value for your organization.

However, user consent can be customized per permission and that's the reason why this column does not reflect the real value in your organization.

You have to ask your admin to grant the permissions.

Configure user content

Upvotes: 1

Related Questions