A Webfinger utility for Ruby

Eugen Rochko 7b1219253d Implement RFC 7033, bump version to 1.0.0, add some documentation 9 年之前
lib f127a1f30f Implement RFC 7033, bump version to 1.0.0, add some documentation 9 年之前
spec f127a1f30f Implement RFC 7033, bump version to 1.0.0, add some documentation 9 年之前
.rspec 724f0c6a80 Initial commit 9 年之前
.ruby-version 724f0c6a80 Initial commit 9 年之前
Gemfile fd04a39022 Adding tests 9 年之前
Gemfile.lock f127a1f30f Implement RFC 7033, bump version to 1.0.0, add some documentation 9 年之前
LICENSE 8b0d7af683 Adding gem version badge to README 9 年之前
README.md f127a1f30f Implement RFC 7033, bump version to 1.0.0, add some documentation 9 年之前
goldfinger.gemspec f127a1f30f Implement RFC 7033, bump version to 1.0.0, add some documentation 9 年之前

README.md

Goldfinger, a Webfinger client for Ruby

Gem Version

A Webfinger client for Ruby. Supports application/xrd+xml and application/jrd+json responses. Raises Goldfinger::NotFoundError on failure to fetch the Webfinger or XRD data, or Goldfinger::SSLError if something is wrong with the HTTPS connection it uses.

Installation

gem install goldfinger

Usage

data = Goldfinger.finger('acct:gargron@quitter.no')

data.link('http://schemas.google.com/g/2010#updates-from').href
# => "https://quitter.no/api/statuses/user_timeline/7477.atom"

data.aliases
# => ["https://quitter.no/user/7477", "https://quitter.no/gargron"]

data.subject
# => "acct:gargron@quitter.no"

RFC support

The official Webfinger RFC is 7033.