doipjs/examples/fetch-profile-aspe.js

19 lines
475 B
JavaScript
Raw Normal View History

2023-07-08 00:17:13 -06:00
import * as doip from '../src/index.js'
2023-07-03 02:39:23 -06:00
const main = async () => {
// Fetch the profile using ASPE
const profile = await doip.asp.fetchASPE("aspe:keyoxide.org:6WJK26YKF6WUVPIZTS2I2BIT64")
console.log(profile);
// Process every claim for every persona
profile.personas[0].claims.forEach(async claim => {
// Match the claim
claim.match()
// Verify the claim
await claim.verify()
console.log(claim)
})
}
main()