Reputation: 140
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.
but when I login I get this message:
Upvotes: 0
Views: 1854
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.
Upvotes: 1