auth.provider API
    Preparing search index...
    interface GoogleProviderConfig {
        authCallbackUrl?: string;
        callbackURL: string;
        clientId: string;
        clientSecret: string;
        clientUrl?: string;
        endSessionEndpoint?: string;
        jwksUri?: string;
        sessionDomain?: string;
    }
    Index

    Properties

    authCallbackUrl?: string

    URL of the auth-callback page (used to build the post-login redirect). Optional.

    callbackURL: string
    clientId: string
    clientSecret: string
    clientUrl?: string

    Fallback URL for the client app (used when no redirectTo is present). Optional.

    endSessionEndpoint?: string

    Override Google's end-session endpoint. When omitted, the provider redirects directly to postLogoutRedirectUri (or accounts.google.com/Logout as fallback).

    jwksUri?: string

    Override Google's JWKS URI. Default: https://www.googleapis.com/oauth2/v3/certs. Test injection only — production deployments rely on the default.

    sessionDomain?: string

    Cookie / session domain used to validate redirect URLs (e.g. ".example.com"). Optional.