matrix-js-sdk
    Preparing search index...

    Interface OAuth2ErrorResponse

    An error response from an OAuth 2.0 endpoint, as specified in https://datatracker.ietf.org/doc/html/rfc6749#section-5.2

    interface OAuth2ErrorResponse {
        error: string;
        error_description?: string;
        error_uri?: string;
    }

    Hierarchy (View Summary)

    Implemented by

    Index
    error: string

    A single ASCII error code, e.g. invalid_grant.

    error_description?: string

    Human-readable ASCII text providing additional information about the error.

    error_uri?: string

    A URI identifying a human-readable web page with information about the error.