2020-11-06 10:35:28 -07:00
|
|
|
# Quick start (Node.js)
|
|
|
|
|
|
|
|
Basic example:
|
|
|
|
|
|
|
|
```javascript
|
|
|
|
const doip = require('doip')
|
|
|
|
|
|
|
|
const verifyIdentity = async (url, fp) => {
|
2020-12-11 02:59:27 -07:00
|
|
|
console.log(await doip.claims.verify(url, fp))
|
2020-11-06 10:35:28 -07:00
|
|
|
}
|
|
|
|
verifyIdentity('dns:doip.rocks', '9f0048ac0b23301e1f77e994909f6bd6f80f485d')
|
|
|
|
```
|
|
|
|
|
|
|
|
This snippet works en will verify the [doip.rocks](https://doip.rocks) domain as
|
|
|
|
linked to Yarmo's cryptographic key using the [dns](serviceproviders/dns.md)
|
|
|
|
service provider.
|
2021-03-01 10:26:40 -07:00
|
|
|
|
|
|
|
## 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](/#/api?id=claimsverifyuri-fingerprint-opts).
|