• Sends a single HTTP request.

    Example:

    const res = $http.send({
    url: "https://example.com",
    body: JSON.stringify({"title": "test"})
    method: "post",
    })

    console.log(res.statusCode) // the response HTTP status code
    console.log(res.headers) // the response headers (eg. res.headers['X-Custom'][0])
    console.log(res.cookies) // the response cookies (eg. res.cookies.sessionId.value)
    console.log(res.raw) // the response body as plain text
    console.log(res.json) // the response body as parsed json array or map

    Parameters

    • config: {
          body?: string | FormData;
          data?: {
              [key: string]: any;
          };
          headers?: {
              [key: string]: string;
          };
          method?: string;
          timeout?: number;
          url: string;
      }
      • Optional body?: string | FormData
      • Optional data?: {
            [key: string]: any;
        }
        • [key: string]: any
      • Optional headers?: {
            [key: string]: string;
        }
        • [key: string]: string
      • Optional method?: string
      • Optional timeout?: number
      • url: string

    Returns {
        cookies: {
            [key: string]: http.Cookie;
        };
        headers: {
            [key: string]: string[];
        };
        json: any;
        raw: string;
        statusCode: number;
    }

    • cookies: {
          [key: string]: http.Cookie;
      }
    • headers: {
          [key: string]: string[];
      }
      • [key: string]: string[]
    • json: any
    • raw: string
    • statusCode: number

Generated using TypeDoc