Reputation: 153
I am implementing Microsoft ADAL plugin in my ionic app 3, so for that i have created an account on Microsoft azure and register my app in Azure portal. After all necessary configuration i used the app credential in my ionic but it through configuration error.
Although i configured my app properly and Grant all necessary administrative permission. I searched this on all forum but error is there.
The error which popup
Thanks
AADSTS650056: Misconfigured application. This could be due to one of the following: The client has not listed any permissions for 'AAD Graph' in the requested permissions in the client's application registration. Or, The admin has not consented in the tenant. Or, Check the application identifier in the request to ensure it matches the configured client application identifier. Please contact your admin to fix the configuration or consent on behalf of the tenant. Client app ID:
Upvotes: 3
Views: 18366
Reputation: 15609
Based on the error message and your description, you may not grant admin consent to your tenant. After adding the permissions which need admin consent, you need click Grant admin consent for tenant
button.
If you have already done this. Check if you are going to call AAD graph api, if yes, check if you have granted AAD graph permissions(not Microsoft Graph permissions). Also, remember to distinguish between application permission and delegated permission.
Upvotes: 5