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

    Interface Configuration

    interface Configuration {
        baseUrl: string;
        parseError: (response: Response) => Promise<Error>;
        fetch?: FetchAPI;
        middleware?: Middleware[];
        agent?: Dispatcher;
        headers?: HTTPHeaders;
        timeoutDuration?: number;
        retry?: RetryConfiguration;
    }
    Index

    Properties

    baseUrl: string
    parseError: (response: Response) => Promise<Error>
    fetch?: FetchAPI

    Provide your own fetch implementation.

    middleware?: Middleware[]

    Provide a middleware that will run either before the request, after the request or when the request fails.

    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.