@faable/auth-js - v2.1.0
    Preparing search index...

    Type Alias SignInWithOAuthConnection

    type SignInWithOAuthConnection = {
        audience?: string;
        connection?: string;
        connection_id?: string;
        queryParams?: { [key: string]: string };
        redirectTo?: string;
        returnTo?: string;
        scopes?: string;
        skipBrowserRedirect?: boolean;
    }
    Index

    Properties

    audience?: string

    Override the API audience the issued access token should be bound to. Falls back to FaableAuthClientConfig.audience when omitted.

    connection?: string

    Default connection is used if not setted. Kept for compatibility with tenants using connection names.

    connection_id?: string

    Identifier of the connection to use. Preferred over connection when known, as the backend resolves it without additional lookups. If both are provided, connection_id wins.

    queryParams?: { [key: string]: string }

    An object of query params

    redirectTo?: string

    A URL to send the user to after they are confirmed.

    returnTo?: string

    App-side destination to return the user to once the callback has been processed. It is stored locally alongside the PKCE verifier (never sent to the server) and surfaced back as returnTo on the result of FaableAuthClient.handleRedirectCallback / FaableAuthClient.initialize.

    scopes?: string

    A space-separated list of scopes granted to the OAuth application.

    skipBrowserRedirect?: boolean

    If set to true does not immediately redirect the current browser context to visit the OAuth authorization page for the provider.