fetcher/xmpp

Description:
  • Fetch proofs from XMPP accounts

Source:

Fetch proofs from XMPP accounts

Example

import { fetcher } from 'doipjs';
const data = await fetcher.xmpp.fn({ id: 'alice@domain.example' });

Members

(static, constant) timeout :number

Description:
  • Default timeout after which the fetch is aborted

Source:
Default Value:
  • 5000

Default timeout after which the fetch is aborted

Type:
  • number

Methods

(static) fn(data, optsopt) → {Promise.<Array.<string>>}

Description:
  • Execute a fetch request

Source:
Parameters:
Name Type Attributes Description
data object

Data used in the request

Properties
Name Type Attributes Description
id string

The identifier of the targeted account

fetcherTimeout number <optional>

Optional timeout for the fetcher

opts module:types~VerificationConfig <optional>

Options used to enable the request

Returns:

The fetched proofs from an XMPP account

Type
Promise.<Array.<string>>