Documentation
    Preparing search index...

    OAuth2 application (client credentials) flow.

    interface IOauth2Application {
        description?: string;
        flow: "application";
        scopes?: Record<string, string>;
        tokenUrl?: string;
        type: "oauth2";
    }
    Index

    Properties

    description?: string

    Scheme description.

    flow: "application"

    OAuth2 flow type.

    scopes?: Record<string, string>

    Available scopes.

    tokenUrl?: string

    Token URL.

    type: "oauth2"

    Scheme type.