React Native Auth0 - v5.5.0
    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;
        localAuthenticationOptions?: LocalAuthenticationOptions;
        clientId: string;
        timeout?: number;
        headers?: Record<string, string>;
        useDPoP?: boolean;
        maxRetries?: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    domain: string

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

    localAuthenticationOptions?: LocalAuthenticationOptions
    clientId: string

    Your Auth0 application's client ID.

    timeout?: number
    headers?: Record<string, string>
    useDPoP?: boolean

    Enables DPoP (Demonstrating Proof-of-Possession) for enhanced token security. When enabled, access and refresh tokens are cryptographically bound to a client-specific key pair.

    maxRetries?: number

    The maximum number of retry attempts for transient errors during credential renewal. Helps handle network failures and transient errors when using refresh token rotation. iOS only - This parameter is accepted on Android for API compatibility but has no effect as the Auth0.Android SDK does not currently support retry configuration.

    0 (no retries)
    

    ios