A WebFinger client for Crystal.
- Add the dependency to your
shard.yml
:
dependencies:
web_finger:
github: toddsundsted/web_finger
- Run
shards install
require "web_finger"
w = WebFinger.query("acct:[email protected]") # => #<WebFinger::Result:0x108d...>
w.link("http://webfinger.net/rel/profile-page").href # => "https://epiktistes.com/@toddsundsted"
- Todd Sundsted - creator and maintainer