dependabot[bot] 4cd0650dbf Bump addressable from 2.5.2 to 2.8.0 | vor 3 Jahren | |
---|---|---|
.github | vor 4 Jahren | |
lib | vor 5 Jahren | |
spec | vor 7 Jahren | |
.gitignore | vor 8 Jahren | |
.rspec | vor 8 Jahren | |
.rubocop.yml | vor 7 Jahren | |
.ruby-version | vor 6 Jahren | |
.travis.yml | vor 7 Jahren | |
Gemfile | vor 8 Jahren | |
Gemfile.lock | vor 3 Jahren | |
LICENSE | vor 8 Jahren | |
README.md | vor 4 Jahren | |
Rakefile | vor 8 Jahren | |
goldfinger.gemspec | vor 4 Jahren |
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.
gem install goldfinger
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"
The official WebFinger RFC is 7033.