Interface ConnectorAuthOAuth2Config

interface ConnectorAuthOAuth2Config {
    clientId: any;
    clientSecret: any;
    authorizeUri: any;
    tokenUri: any;
    scopes?: any;
    clientAuthLocation?: "body" | "headers";
    noRefreshToken?: boolean;
    skipPkce?: boolean;
    skipClientAuthInBody?: boolean;
    skipClientAuthInHeaders?: boolean;
    extra?: Record<string, any>;
}

Properties

clientId: any
clientSecret: any
authorizeUri: any
tokenUri: any
scopes?: any
clientAuthLocation?: "body" | "headers"
noRefreshToken?: boolean
skipPkce?: boolean
skipClientAuthInBody?: boolean
skipClientAuthInHeaders?: boolean
extra?: Record<string, any>