2
votes

I'm trying to access Microsoft Graph using the implicit flow, after successful authentication with Azure Active Directory.

I granted access to Read directory data. However, my implicit flow still doesn't work, although user is authenticated successful.

enter image description here

According to v2.0 Protocols - SPAs using the implicit flow, I need to enable Implicit grant. I'm wondering where and how I enable Implicit grant.

1

1 Answers

4
votes

For your case,If you want to access Microsoft Graph API, you need to add it in Required permissions. enter image description here

I'm wondering where and how I enable Implicit grant.

You can open the Manifest of your AAD Application and Edit it.

You can enable the implicit flow by changing the "oauth2AllowImplicitFlow": false to be "oauth2AllowImplicitFlow": true

enter image description here