Skip to main content
Version: 57.2.0

AuthStrategy

AuthStrategy = { getToken: () => Promise<string>; type: "bearer"; } | { credentials: { clientId: string; clientSecret: string; }; refreshOn401: boolean; tokenUrl: string; type: "oauth2"; } | { getKey: () => Promise<string>; header: string; type: "apiKey"; }