Home > Enterprise >  User.ReadBasic.All Insufficient privileges to complete the operation
User.ReadBasic.All Insufficient privileges to complete the operation

Time:07-07

I am working on a application that uses the microsoft graph api, but for some reason when I add a new permission, in this case User.ReadBasic.All, its not present in the token.

Image no.1

Image no.2

Any thoughts?

CodePudding user response:

User needs to agree to the new permission. You may need to raise the consent prompt again. Only after that it will appear in the token, and only in a new token of course :)

  • Related