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

    Interface Options

    interface Options {
        environment?: Supplier<string>;
        baseUrl?: Supplier<string>;
        token: Supplier<string>;
        headers?: Record<string, Supplier<undefined | string>>;
        fetcher?: FetchFunction;
    }
    Index

    Properties

    environment?: Supplier<string>
    baseUrl?: Supplier<string>

    Specify a custom URL to connect the client to.

    token: Supplier<string>
    headers?: Record<string, Supplier<undefined | string>>

    Additional headers to include in requests.

    fetcher?: FetchFunction