Documentation
    Preparing search index...

    OAuth2 authorization code flow.

    interface IOauth2AccessCode {
        authorizationUrl?: string;
        description?: string;
        flow: "accessCode";
        scopes?: Record<string, string>;
        tokenUrl?: string;
        type: "oauth2";
    }
    Index

    Properties

    authorizationUrl?: string

    Authorization URL.

    description?: string

    Scheme description.

    flow: "accessCode"

    OAuth2 flow type.

    scopes?: Record<string, string>

    Available scopes.

    tokenUrl?: string

    Token URL.

    type: "oauth2"

    Scheme type.