AADSTS70005: response_type 'id_token' is not enabled for the application AADSTS70005: response_type 'id_token' is not enabled for the application azure azure

AADSTS70005: response_type 'id_token' is not enabled for the application


try this:go to portal.azure.comselect your directory, and go to Azure ADthen select App registration (preview)select the app you are trying to authenticate (you should already have registered it)go to the authentication tabcheck "ID tokens" in the Advanced Settings section (see the bottom of the attached image)

enter image description here

this have worked for me


I got the error:

AADSTS700054: response_type 'id_token' is not enabled for the application.

And the resolution was setting:

{  "oauth2AllowIdTokenImplicitFlow" : true}

in Azure Active Directory App Manifest


Error : OpenIdConnectMessage.Error was not null, indicating an error. Error: 'unsupported_response_type'. This error occurred because Azure AD not return any Access tokens or ID tokens.Azure AD need to enabled check box to return tokens, after authentication is done.

How to Solve : goto Azure AD => App registration => click tab Authentication =>enabled Access tokens and ID tokens check-boxes.