No access token was provided in the request.

Note that this is different from the HTTP 403 response, as the 403 response should only be used when an access token is provided and the user does not have permission to perform the request.

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