OAuth flow configuration

interface OAuthFlow {
    authorizationUrl?: string;
    tokenUrl?: string;
    refreshUrl?: string;
    scopes: Record<string, string>;
}

Properties

authorizationUrl?: string
tokenUrl?: string
refreshUrl?: string
scopes: Record<string, string>