Class FetchHttpApi<O>

Type Parameters

Hierarchy

Constructors

Properties

abortController: AbortController = ...
opts: O

Methods

  • Perform an authorised request to the homeserver.

    Returns

    Promise which resolves to

    {
    data: {Object},
    headers: {Object},
    code: {Number},
    }

    If onlyData is set, this will resolve to the data object only.

    Returns

    Rejects with an error if a problem occurred. This includes network problems and Matrix-specific error JSON.

    Type Parameters

    • T

    Parameters

    • method: Method

      The HTTP method e.g. "GET".

    • path: string

      The HTTP path after the supplied prefix e.g. "/createRoom".

    • Optional queryParams: QueryDict

      A dict of query params (these will NOT be urlencoded). If unspecified, there will be no query params.

    • Optional body: Body

      The HTTP JSON body.

    • opts: IRequestOpts = {}

      additional options. If a number is specified, this is treated as opts.localTimeoutMs.

    Returns Promise<ResponseType<T, O>>

  • Parameters

    • resource: string | URL
    • Optional options: RequestInit

    Returns Promise<Response>

  • Form and return a homeserver request URL based on the given path params and prefix.

    Returns

    URL

    Parameters

    • path: string

      The HTTP path after the supplied prefix e.g. "/createRoom".

    • Optional queryParams: QueryDict

      A dict of query params (these will NOT be urlencoded).

    • Optional prefix: string

      The full prefix to use e.g. "/_matrix/client/v2_alpha", defaulting to this.opts.prefix.

    • Optional baseUrl: string

      The baseUrl to use e.g. "https://matrix.org/", defaulting to this.opts.baseUrl.

    Returns URL

  • Type Parameters

    • T extends {} = Record<string, unknown>

    Parameters

    • method: Method
    • path: string
    • params: undefined | Record<string, string | string[]>
    • prefix: string
    • Optional accessToken: string

    Returns Promise<ResponseType<T, O>>

  • Perform a request to the homeserver without any credentials.

    Returns

    Promise which resolves to

    {
    data: {Object},
    headers: {Object},
    code: {Number},
    }

    If onlyData</code> is set, this will resolve to the <code>data object only.

    Returns

    Rejects with an error if a problem occurred. This includes network problems and Matrix-specific error JSON.

    Type Parameters

    • T

    Parameters

    • method: Method

      The HTTP method e.g. "GET".

    • path: string

      The HTTP path after the supplied prefix e.g. "/createRoom".

    • Optional queryParams: QueryDict

      A dict of query params (these will NOT be urlencoded). If unspecified, there will be no query params.

    • Optional body: Body

      The HTTP JSON body.

    • Optional opts: IRequestOpts

      additional options

    Returns Promise<ResponseType<T, O>>

  • Perform a request to an arbitrary URL.

    Returns

    Promise which resolves to data unless onlyData is specified as false, where the resolved value will be a fetch Response object.

    Returns

    Rejects with an error if a problem occurred. This includes network problems and Matrix-specific error JSON.

    Type Parameters

    • T

    Parameters

    • method: Method

      The HTTP method e.g. "GET".

    • url: string | URL

      The HTTP URL object.

    • Optional body: Body

      The HTTP JSON body.

    • opts: Pick<IRequestOpts, "json" | "headers" | "localTimeoutMs" | "keepAlive" | "abortSignal"> = {}

      additional options

    Returns Promise<ResponseType<T, O>>

  • Sets the base URL for the identity server

    Parameters

    • url: string

      The new base url

    Returns void

Generated using TypeDoc