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