Interface ErrorResponseBody

interface ErrorResponseBody {
    code?: string;
    error: string;
    error_description?: string;
    error_uri?: string;
    message?: string;
    state?: string;
}

Hierarchy (View Summary)

Properties

code?: string
error: string = ...

A single ASCII error code.

error_description?: string = ...

A human-readable description of the error. This is meant to assist the client developer in understanding the error. This is NOT meant to be shown to the end user.

error_uri?: string = ...

A URI identifying a human-readable web page with information about the error, used to provide the client developer with additional information about the error.

message?: string
state?: string = ...

REQUIRED if a "state" parameter was present in the client authorization request. The exact value received from the client.