auth.provider API
    Preparing search index...

    RFC 6749 §5.2 error response envelope. Used across /oauth/* and the session router so consumer code can parse error responses with a single shape regardless of which surface produced them.

    interface ErrorEnvelope {
        error: string;
        error_description?: string;
        error_uri?: string;
    }
    Index

    Properties

    error: string
    error_description?: string
    error_uri?: string