React Native Auth0 - v5.5.0
    Preparing search index...

    Interface NativeAuth0Options

    Extends the core Auth0Options with native-specific configuration.

    Platform specific: Native only (iOS/Android).

    interface NativeAuth0Options {
        domain: string;
        clientId: string;
        timeout?: number;
        headers?: Record<string, string>;
        useDPoP?: boolean;
        maxRetries?: number;
        localAuthenticationOptions?: LocalAuthenticationOptions;
    }

    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>
    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

    localAuthenticationOptions?: LocalAuthenticationOptions