doipjs/examples/fetch-key-wkd.js
Yarmo Mackenbach dfcb29b0d1
Add examples
2021-11-15 16:16:50 +01:00

14 lines
No EOL
337 B
JavaScript

const doip = require('../src')
const main = async () => {
// Fetch the key using WKD
const key = await doip.keys.fetchWKD("test@doip.rocks")
// Process it to extract the UIDs and their claims
const obj = await doip.keys.process(key)
// Log the claims of the first UID
console.log(obj.users[0].claims)
}
main()