web_finger

GitHub Release Build Status Documentation

A WebFinger client for Crystal.

Installation

  1. Add the dependency to your shard.yml:
dependencies:
  web_finger:
    github: toddsundsted/web_finger
  1. Run shards install

Usage

require "web_finger"

w = WebFinger.query("acct:toddsundsted@epiktistes.com") # => #<WebFinger::Result:0x108d...>
w.link("http://webfinger.net/rel/profile-page").href # => "https://epiktistes.com/@toddsundsted"

Contributors