React Native Auth0 - v5.0.0-beta.4
    Preparing search index...

    Interface WebAuth0Options

    Extends the core Auth0Options with web-specific configuration that is passed down to @auth0/auth0-spa-js.

    interface WebAuth0Options {
        domain: string;
        clientId: string;
        timeout?: number;
        headers?: Record<string, string>;
        cacheLocation?: "memory" | "localstorage";
        useRefreshTokens?: boolean;
        audience?: string;
        scope?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    domain: string

    Your Auth0 application's domain. e.g., 'your-tenant.us.auth0.com'

    clientId: string

    Your Auth0 application's client ID.

    timeout?: number
    headers?: Record<string, string>
    cacheLocation?: "memory" | "localstorage"

    How and where to cache session data. Defaults to memory.

    useRefreshTokens?: boolean

    Enables the use of refresh tokens for silent authentication.

    audience?: string

    A custom audience for the getTokenSilently call.

    scope?: string

    A custom scope for the getTokenSilently call.