dependabot[bot] d013213138 Bump rake from 12.0.0 to 12.3.3 (#14) | hace 4 años | |
---|---|---|
.github | hace 4 años | |
lib | hace 5 años | |
spec | hace 7 años | |
.gitignore | hace 8 años | |
.rspec | hace 8 años | |
.rubocop.yml | hace 7 años | |
.ruby-version | hace 6 años | |
.travis.yml | hace 7 años | |
Gemfile | hace 8 años | |
Gemfile.lock | hace 4 años | |
LICENSE | hace 8 años | |
README.md | hace 4 años | |
Rakefile | hace 8 años | |
goldfinger.gemspec | hace 4 años |
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.