Failed to authorize: [error: null, description: Invalid ID Token]

i have a problem with a login feature.
yesterday, the feature workly fine and no error detected.

But, now i have a error when trying to login with auth0.
The error message is :
Exception: Failed to authorize: [error: null, description: Invalid ID Token]

This for function i used to authorization :
 final request = AuthorizationTokenRequest(
        _configuration.clientId,
        _configuration.redirectUrl,
        issuer: _configuration.issuer,
        additionalParameters: {"audience": _configuration.additionalAudience},
        promptValues: ["login"],
        scopes: _configuration.scopes,
      );
      final authorizationTokenResponse =
          await _appAuth.authorizeAndExchangeCode(request);

I dont change anything in auth0 configuration both on local and server.
FYI, i used flutter

Hi @dikynugraha,

Welcome to the Auth0 Community!

I am not seeing any other mentions of that error. Is there any other information you can give us?

  • Do you see another error code and message from the server?
  • What SDK and version?
  • What does the outgoing request and response look like?

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.