react-native-auth0
    Preparing search index...

    Interface Auth0Options

    Options for configuring the Auth0 client.

    interface Auth0Options {
        clientId: string;
        domain: string;
        headers?: Record<string, string>;
        localAuthenticationOptions?: LocalAuthenticationOptions;
        telemetry?: Telemetry;
        timeout?: number;
    }
    Index

    Properties

    clientId: string

    The client identifier of your application.

    domain: string

    The Auth0 domain for your tenant.

    headers?: Record<string, string>

    (Optional) Custom headers to include in requests.

    localAuthenticationOptions?: LocalAuthenticationOptions

    Options for configuring local authentication.

    telemetry?: Telemetry

    Telemetry information to include in requests.

    timeout?: number

    The timeout in milliseconds for network requests.