SSOOIDC / Client / exceptions / InvalidClientException

InvalidClientException#

class SSOOIDC.Client.exceptions.InvalidClientException#

Indicates that the clientId or clientSecret in the request is invalid. For example, this can occur when a client sends an incorrect clientId or an expired clientSecret.

Example

try:
  ...
except client.exceptions.InvalidClientException as e:
  print(e.response)
response#

The parsed error response. All exceptions have a top level Error key that provides normalized access to common exception atrributes. All other keys are specific to this service or exception class.

Syntax

{
    'error': 'string',
    'error_description': 'string',
    'Error': {
        'Code': 'string',
        'Message': 'string'
    }
}

Structure

  • (dict) –

    Indicates that the clientId or clientSecret in the request is invalid. For example, this can occur when a client sends an incorrect clientId or an expired clientSecret.

    • error (string) –

      Single error code. For this exception the value will be invalid_client.

    • error_description (string) –

      Human-readable text providing additional information, used to assist the client developer in understanding the error that occurred.

    • Error (dict) – Normalized access to common exception attributes.

      • Code (string) – An identifier specifying the exception type.

      • Message (string) – A descriptive message explaining why the exception occured.