A ruby interface for the Mastodon API
Luiz Picolo ツ 60b0ed09c3 Added new instruction to usage (#48) | 4 лет назад | |
---|---|---|
.github | 4 лет назад | |
lib | 4 лет назад | |
spec | 4 лет назад | |
.codeclimate.yml | 8 лет назад | |
.gitignore | 5 лет назад | |
.rspec | 8 лет назад | |
.rubocop.yml | 7 лет назад | |
.travis.yml | 5 лет назад | |
CHANGELOG.md | 5 лет назад | |
Gemfile | 8 лет назад | |
README.md | 4 лет назад | |
Rakefile | 8 лет назад | |
mastodon.gemspec | 5 лет назад |
A ruby interface for the Mastodon API.
gem 'mastodon-api', require: 'mastodon'
All the documentation is available on RubyDoc.
Assuming that you already have an access token for a user on a given Mastodon instance:
require 'mastodon'
client = Mastodon::REST::Client.new(base_url: 'https://mastodon.social', bearer_token: 'your_access_token')
If you need to get an access token, you must first ensure that you have the client ID and client secret for your app on the given Mastodon instance (you should save those for future calls):
client.create_app('My Ruby App', 'http://mywebsite.com/callback')
You can then use the client ID and secret in a standard OAuth 2 authorization flow.