mastodon.cr
forked frommastodon
A Crystal-lang library for Mastodon API
Installation
Add this to your application's shard.yml
:
dependencies:
mastodon:
github: spencerking/mastodon.cr
Usage
require "mastodon"
Register application & Authenticate
client = Mastodon::REST::Client.new(url: "example.com")
app = client.apps("My Mastodon App", scopes: "read write follow")
token = client.get_access_token_using_username_password(
client_id: app.client_id,
client_secret: app.client_secret,
scopes: "read write follow",
username: "USERNAME",
password: "PASSWORD"
)
client.authenticate(token)
Client
client = Mastodon::REST::Client.new(url: "example.com", access_token: "ACCESS_TOKEN")
Todo
- OAuth : scope handling
Contributing
- Fork it ( https://github.com/spencerking/mastodon.cr/fork )
- Create your feature branch (git checkout -b my-new-feature)
- Commit your changes (git commit -am 'Add some feature')
- Push to the branch (git push origin my-new-feature)
- Create a new Pull Request
Contributors
- Decors - creator
- spencerking - maintainer
Repository
mastodon.cr
Owner
Statistic
- 1
- 0
- 0
- 1
- 1
- almost 4 years ago
- January 5, 2021
License
MIT License
Links
Synced at
Wed, 06 Nov 2024 15:43:40 GMT
Languages