| request(options: HttpRequest) |
|
Promise<HttpResponse> |
|
| get(options: { url: string, params?: Object, headers?: Object }) |
|
Promise<HttpResponse> |
|
| post(options: { url: string, body: Object, params?: Object, headers?: Object }) |
|
Promise<HttpResponse> |
|
| delete(options: { url: string, params?: Object, headers?: Object }) |
|
Promise<HttpResponse> |
|
| put(options: { url: string, body: Object, params?: Object, headers?: Object }) |
|
Promise<HttpResponse> |
|
| options(options: { url: string, params?: Object, headers?: Object }) |
|
Promise<HttpResponse> |
|
| head(options: { url: string, params?: Object, headers?: Object }) |
|
Promise<HttpResponse> |
|
| setBasicAuth(options: { host: string, username: string, password: string }) |
|
Promise<any> |
|
| getBasicAuth(options: { host: string }) |
|
Promise<{ value: string }> |
|
| setHeader(options: { host: string, header: string, value: string }) |
|
Promise<any> |
|
| getHeaders(options: { host: string }) |
|
Promise<{ value: any }> |
|
| setDataSerializer(options: { serializer: HttpDataSerializerType }) |
|
Promise<any> |
|
| getDataSerializer() |
|
Promise<{ value: string }> |
|
| setRequestTimeout(options: { timeout: number }) |
|
Promise<any> |
|
| setCookie(options: { host: string, cookie: string }) |
|
Promise<any> |
|
| getCookieString(options: { host: string }) |
|
Promise<{ value: string }> |
|
| clearCookies() |
|
Promise<any> |
|
| removeCookies(options: { host: string }) |
|
Promise<any> |
|