The provided authorization grant (e.g., authorization code, resource owner credentials) or refresh token is invalid, expired, revoked, does not match the redirection URI used in the authorization request, or was issued to another client.

Hierarchy (View Summary)

Constructors

Properties

cause?: unknown
code: string
error: string
error_description?: string
error_uri?: string
message: string
name: string
stack?: string
state?: string
statusCode: number
prepareStackTrace?: (err: Error, stackTraces: CallSite[]) => any

Optional override for formatting stack traces

stackTraceLimit: number

Methods

  • Parameters

    Returns
        | {
            error: string;
            error_description: undefined
            | string;
            error_uri: undefined | string;
            state: undefined | string;
        }
        | {
            error: string;
            error_description?: undefined;
            error_uri?: undefined;
            state?: undefined;
        }

  • Create .stack property on a target object

    Parameters

    • targetObject: object
    • OptionalconstructorOpt: Function

    Returns void