@tauri-apps/plugin-http - v2.5.1
    Preparing search index...

    Interface ClientOptions

    Options to configure the Rust client used to make fetch requests

    2.0.0

    interface ClientOptions {
        maxRedirections?: number;
        connectTimeout?: number;
        proxy?: Proxy;
        danger?: DangerousSettings;
    }
    Index

    Properties

    maxRedirections?: number

    Defines the maximum number of redirects the client should follow. If set to 0, no redirects will be followed.

    connectTimeout?: number

    Timeout in milliseconds

    proxy?: Proxy

    Configuration of a proxy that a Client should pass requests to.

    Configuration for dangerous settings on the client such as disabling SSL verification.