Type Alias MetabaseIsGuestAuthConfig
MetabaseIsGuestAuthConfig: { metabaseInstanceUrl: string } & {
apiKey?: never;
fetchRequestToken?: never;
guestEmbedProviderUri?: string;
isGuest: true;
preferredAuthMethod?: never;
}
Type Declaration
metabaseInstanceUrl: string
OptionalapiKey?: never
OptionalfetchRequestToken?: never
OptionalguestEmbedProviderUri?: string
isGuest: true
OptionalpreferredAuthMethod?: never
URL endpoint for fetching and refreshing guest embed JWT tokens (iframe only, not applicable for SDK's guest mode). Supports both token refresh on expiry and initial token fetch when no static token is provided. In both cases, this works with guest embed components (metabase-dashboard and metabase-question). The endpoint should return { jwt: string } with the new token.