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

    Interface Auth0Options

    Core configuration options required to initialize the Auth0 client. These options are common across all supported platforms.

    interface Auth0Options {
        domain: string;
        clientId: string;
        timeout?: number;
        headers?: Record<string, 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>