Victor Bjorn
09/11/2025, 2:46 PMfunction myAuthenticationHandler(authError) {
// ... define the logic for custom authentication flow
}
Thank you!Joseph Heun
09/11/2025, 3:03 PM?auth=sso to your <script> (easiest), or initialize programmatic auth with setContext(...).
• SSO: ContextDeferredAuthProvider(redirectToTigerAuthentication)
• JWT (prod): TigerJwtAuthProvider({ getJwt: () => fetch('/api/gooddata/jwt') })
• API token (dev-only): TigerTokenAuthProvider('<token>')Joseph Heun
09/11/2025, 3:04 PM