Auth0 Node.js SDK - v5.0.0
    Preparing search index...

    Interface ClientOptions

    interface ClientOptions {
        telemetry?: boolean;
        clientInfo?: { name: string; [key: string]: unknown };
        fetch?: FetchAPI;
        agent?: Dispatcher;
        headers?: HTTPHeaders;
        timeoutDuration?: number;
        retry?: RetryConfiguration;
    }

    Hierarchy (View Summary)

    Index

    Properties

    telemetry?: boolean
    clientInfo?: { name: string; [key: string]: unknown }
    fetch?: FetchAPI

    Provide your own fetch implementation.

    agent?: Dispatcher

    Pass your own http agent to support proxies.

    headers?: HTTPHeaders

    Custom headers that will be added to every request.

    timeoutDuration?: number

    Timeout in ms before aborting the request (default 10,000)

    Retry configuration.