A Webfinger utility for Ruby

dependabot[bot] d013213138 Bump rake from 12.0.0 to 12.3.3 (#14) 4 年之前
.github 4f585464ba Update gempush.yml 4 年之前
lib 2deb9da0ab Upgrade to HTTP.rb v4 (#9) 5 年之前
spec 13d8b032fd Update dependencies, do not mask HTTP/OpenSSL exceptions, do not fallback to HTTP (#4) 7 年之前
.gitignore 592248e4a7 Add timeouts to requests, update dependencies, bump to 1.0.3 8 年之前
.rspec 592248e4a7 Add timeouts to requests, update dependencies, bump to 1.0.3 8 年之前
.rubocop.yml 13d8b032fd Update dependencies, do not mask HTTP/OpenSSL exceptions, do not fallback to HTTP (#4) 7 年之前
.ruby-version 1fca7e670e Update dependencies and bump to 2.1.0 6 年之前
.travis.yml 13d8b032fd Update dependencies, do not mask HTTP/OpenSSL exceptions, do not fallback to HTTP (#4) 7 年之前
Gemfile 592248e4a7 Add timeouts to requests, update dependencies, bump to 1.0.3 8 年之前
Gemfile.lock d013213138 Bump rake from 12.0.0 to 12.3.3 (#14) 4 年之前
LICENSE 8b0d7af683 Adding gem version badge to README 8 年之前
README.md 62d296bb98 Bump version to 2.1.1 (#12) 4 年之前
Rakefile 237a9c2e81 Adding travis CI 8 年之前
goldfinger.gemspec 62d296bb98 Bump version to 2.1.1 (#12) 4 年之前

README.md

Goldfinger, a WebFinger client for Ruby

Gem Version Build Status

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, can also raise HTTP:Error or OpenSSL::SSL::SSLError if something is wrong with the HTTPS connection it uses.

  • Does not fall back to HTTP if HTTPS is not available
  • Does check host-meta XRD, but only if the standard WebFinger path yielded no result

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.