Reputation: 62260
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.
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.
Upvotes: 2
Views: 2943
Reputation: 9401
For your case,If you want to access Microsoft Graph API, you need to add it in Required permissions.
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
Upvotes: 5