I'm trying to retrieve a JWT from the management API in Azure using the following URL:
https://login.microsoftonline.com/{Tenant}/oauth2/v2.0/authorize?client_id={clientid}&redirect_uri={AppRedirectURL}&scope=openid&response_type=token
This is returning: AADSTS70005: response_type 'token' is not supported for the application
I've added the following to my application manifest:
"oauth2AllowImplicitFlow": true,
But this is still giving me the error. I'm not sure why? I've logged my account in and out and tried from a private browsing window.
Does Azure cache details? Where can I refresh this cache within azure?
nonce
Parameter is also required in this Reqeust. – Wayne Yangnonce
and was a red herring error. Working now. Thank you for your suggestions :) – Dandy