Http
Last updated
Last updated
Collection of HTTP functions.
Create a HTTP Request. Can be used to post or get data to and from a URL.
url string
The URL.
options { method?: any, headers?: any, data?: any, wait?: boolean, url?: string, baseURL?: string, params?: any, timeout?: number, withCredentials?: boolean, auth?: any, responseType?: string, responseEncoding?: string, xsrfCookieName?: string, xsrfHeaderName?: string, maxContentLength?: number, maxBodyLength?: number, maxRedirects?: number, proxy?: any, decompress?: boolean, httpsAgent?: { ca?: string, key?: string, cert?: string, pfx?: string, ciphers?: string, passphrase?: string }, [x: any]: unknown }
(optional) Options object - set headers, method and other properties.
{ data: any, status: number, statusText: string, headers: Record<string, string> }
Create a HTTP GET Request.
url string
The URL.
options { method?: any, headers?: any, data?: any, wait?: boolean, url?: string, baseURL?: string, params?: any, timeout?: number, withCredentials?: boolean, auth?: any, responseType?: string, responseEncoding?: string, xsrfCookieName?: string, xsrfHeaderName?: string, maxContentLength?: number, maxBodyLength?: number, maxRedirects?: number, proxy?: any, decompress?: boolean, httpsAgent?: { ca?: string, key?: string, cert?: string, pfx?: string, ciphers?: string, passphrase?: string }, [x: any]: unknown }
{ data: any, status: number, statusText: string, headers: Record<string, string> }
Create a HTTP POST Request.
url string
The URL.
options { method?: any, headers?: any, data?: any, wait?: boolean, url?: string, baseURL?: string, params?: any, timeout?: number, withCredentials?: boolean, auth?: any, responseType?: string, responseEncoding?: string, xsrfCookieName?: string, xsrfHeaderName?: string, maxContentLength?: number, maxBodyLength?: number, maxRedirects?: number, proxy?: any, decompress?: boolean, httpsAgent?: { ca?: string, key?: string, cert?: string, pfx?: string, ciphers?: string, passphrase?: string }, [x: any]: unknown }
{ data: any, status: number, statusText: string, headers: Record<string, string> }
Create a HTTP PUT Request.
url string
The URL.
options { method?: any, headers?: any, data?: any, wait?: boolean, url?: string, baseURL?: string, params?: any, timeout?: number, withCredentials?: boolean, auth?: any, responseType?: string, responseEncoding?: string, xsrfCookieName?: string, xsrfHeaderName?: string, maxContentLength?: number, maxBodyLength?: number, maxRedirects?: number, proxy?: any, decompress?: boolean, httpsAgent?: { ca?: string, key?: string, cert?: string, pfx?: string, ciphers?: string, passphrase?: string }, [x: any]: unknown }
{ data: any, status: number, statusText: string, headers: Record<string, string> }
Create a HTTP DELETE Request.
url string
The URL.
options { method?: any, headers?: any, data?: any, wait?: boolean, url?: string, baseURL?: string, params?: any, timeout?: number, withCredentials?: boolean, auth?: any, responseType?: string, responseEncoding?: string, xsrfCookieName?: string, xsrfHeaderName?: string, maxContentLength?: number, maxBodyLength?: number, maxRedirects?: number, proxy?: any, decompress?: boolean, httpsAgent?: { ca?: string, key?: string, cert?: string, pfx?: string, ciphers?: string, passphrase?: string }, [x: any]: unknown }
{ data: any, status: number, statusText: string, headers: Record<string, string> }
Create a HTTP HEAD Request.
url string
The URL.
options { method?: any, headers?: any, data?: any, wait?: boolean, url?: string, baseURL?: string, params?: any, timeout?: number, withCredentials?: boolean, auth?: any, responseType?: string, responseEncoding?: string, xsrfCookieName?: string, xsrfHeaderName?: string, maxContentLength?: number, maxBodyLength?: number, maxRedirects?: number, proxy?: any, decompress?: boolean, httpsAgent?: { ca?: string, key?: string, cert?: string, pfx?: string, ciphers?: string, passphrase?: string }, [x: any]: unknown }
{ data: any, status: number, statusText: string, headers: Record<string, string> }
Create a HTTP PATCH Request.
url string
The URL.
options { method?: any, headers?: any, data?: any, wait?: boolean, url?: string, baseURL?: string, params?: any, timeout?: number, withCredentials?: boolean, auth?: any, responseType?: string, responseEncoding?: string, xsrfCookieName?: string, xsrfHeaderName?: string, maxContentLength?: number, maxBodyLength?: number, maxRedirects?: number, proxy?: any, decompress?: boolean, httpsAgent?: { ca?: string, key?: string, cert?: string, pfx?: string, ciphers?: string, passphrase?: string }, [x: any]: unknown }
{ data: any, status: number, statusText: string, headers: Record<string, string> }
(optional) Options object - set headers, method and other properties.
(optional) Options object - set headers, method and other properties.
(optional) Options object - set headers, method and other properties.
(optional) Options object - set headers, method and other properties.
(optional) Options object - set headers, method and other properties.
(optional) Options object - set headers, method and other properties.