mirror of
https://codeberg.org/keyoxide/doipjs.git
synced 2024-12-23 06:59:29 -07:00
702 B
702 B
Quick start (Node.js)
Basic example:
const doip = require('doip')
const verifyIdentity = async (url, fp) => {
console.log(await doip.claims.verify(url, fp))
}
verifyIdentity('dns:doip.rocks', '9f0048ac0b23301e1f77e994909f6bd6f80f485d')
This snippet works en will verify the doip.rocks domain as linked to Yarmo's cryptographic key using the dns service provider.
Twitter account verification
By default, Twitter accounts verification has to be enabled by either having a Twitter developer account or providing a Nitter instance domain.
Please refer to the API documentation.