Bluestep JS Documentation
    Preparing search index...

    Interface FetchParams

    TODO

    interface FetchParams {
        binaryBody?: ByteArray | InputStream | ((out: OutputStream) => void);
        body?: string | ((writer: Writer) => void);
        bodyType?: string;
        charset?: string;
        connectionTimeout?: number;
        credentials?: boolean;
        enableErrorStream?: boolean;
        followRedirects?: boolean;
        headers?: { [key: string]: string | string[] };
        method?: string;
        readTimeout?: number;
        sslContext?: FetchSslContext;
        version?: "HTTP_1_1" | "HTTP_2";
    }
    Index

    Properties

    binaryBody?: ByteArray | InputStream | ((out: OutputStream) => void)

    binaryBody

    body?: string | ((writer: Writer) => void)

    body

    bodyType?: string

    bodyType

    charset?: string

    charset

    connectionTimeout?: number

    connectionTimeout

    credentials?: boolean

    credentials

    enableErrorStream?: boolean

    enableErrorStream

    followRedirects?: boolean

    followRedirects

    headers?: { [key: string]: string | string[] }

    headers

    method?: string

    method

    readTimeout?: number

    readTimeout

    sslContext?: FetchSslContext

    sslContext

    version?: "HTTP_1_1" | "HTTP_2"

    version.