Troubleshooting
Anywhere
Fixing AADSTS700054: response_type 'id_token' is not enabled for the application
7 min
when signing in to a microsoft application integrated with azure ad, you may encounter this error aadsts700054 response type 'id token' is not enabled for the application this indicates that the application is trying to request an id token , but id tokens are not enabled in the azure ad app registration id tokens are essential for openid connect (oidc) authentication why this happens this typically occurs when the app is using implicit flow or hybrid flow to authenticate users id tokens were not enabled in the app registration configuration in azure ad how to fix it 1\ go to azure ad app registration sign in to the azure portal navigate to entra id > app registrations locate and select the application that’s failing 2\ enable id tokens in the app registration , go to authentication under manage scroll down to the implicit grant and hybrid flows section check the box for id tokens (used for implicit and hybrid flows) click save 3\ verify redirect uris make sure your redirect uris are configured correctly if it’s a web app, ensure the uri is set to https // and matches what your app expects 4\ retry sign in once saved, try signing in again the error should be resolved additional notes if you’re using msal (microsoft authentication library) , consider moving to the authorization code flow with pkce , as implicit flow is being deprecated for spa apps ensure admin consent is granted for required api permissions