matrix-js-sdk
    Preparing search index...

    Interface DeviceAccessTokenError

    Error from the OAuth2 token endpoint when exchanging a token for grant_type device_code.

    interface DeviceAccessTokenError {
        error: string;
        error_description?: string;
        error_uri?: string;
        session_state?: string;
    }

    Hierarchy (View Summary)

    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.

    session_state?: string