WebFinger discovery protocol for Fingro and Node.js.
npm install fingro-webfingerFingro resolver implementing support
for WebFinger.
Status:





Fingro is open source software. Ongoing development is made possible by
generous contributions from individuals and corporations.
To learn more about how you can help keep this project financially sustainable,
please visit Jared Hanson's page on Patreon.
``bash`
$ npm install fingro-webfinger
#### Register Protocol
Register the WebFinger protocol with the fingro resolver.
`js`
resolver.use(require('fingro-webfinger')());
#### Resolve an Identity
With the WebFinger protocol registered, the resolver can now resolve identifiers
that support the protocol.
`js``
resolver.resolve('acct:paulej@packetizer.com', function(err, entity) {
console.log(entity);
});
#### Network
The WebFinger protocol is, unfortunately, not widely implemented by popular
mainstream online services like Google, Facebook, and Twitter. The grassroots
IndieWeb movement is building a people-focused
alternative to such services, and they provide more information
about the protocol, including services that implement support.
Copyright (c) 2015-2018 Jared Hanson <http://jaredhanson.net/>