Interface ConnectorAuthOAuth2Config

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

Properties

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