I created an azure App registration :
I used Adal for authentification :
the problem is when I decrypt the generated tokens ( sharepoint and graph api), I get :
"scp": "User.Read",
I need to know :
- Why I get only this permission in the scope claim?
- How can this to get all permissions ?
Thanks,
prompt=consent
to the authorization URL when your app redirects you to log in. This will force consenting to all permissions again. - juunas