revolution / laravel-mastodon-api
Mastodon API for Laravel
3.2.0
2024-10-03 01:35 UTC
Requires
- php: ^8.2
- ext-json: *
- illuminate/http: ^10.0||^11.0
Requires (Dev)
- orchestra/testbench: ^8.0||^9.0
README
Requirements
- PHP >= 8.2
- Laravel >= 10.0
Installation
Composer
composer require revolution/laravel-mastodon-api
Usage
Registering an application
By Web UI
- Go to your Mastodon's user preferences page.
- Go to development page.
By API
use Revolution\Mastodon\Facades\Mastodon; class MastodonController { public function app() { $client_name = 'my-app'; $redirect_uris = 'https://my-instance/callback'; $scopes = 'read write follow'; $app_info = Mastodon::domain('https://example.com') ->createApp($client_name, $redirect_uris, $scopes); dd($app_info); //[ // 'id' => '', // 'client_id' => '', // 'client_secret' => '', //] } }
OAuth authentication
Use https://github.com/kawax/socialite-mastodon
Save account info.(id
, token
, username
, acct
...and more.)
Get statuses
use Revolution\Mastodon\Facades\Mastodon; $statuses = Mastodon::domain('https://example.com') ->token('token') ->statuses($account_id); dd($statuses);
Get one status
use Revolution\Mastodon\Facades\Mastodon; $status = Mastodon::domain('https://example.com') ->token('token') ->status($status_id); dd($status);
Post status
use Revolution\Mastodon\Facades\Mastodon; Mastodon::domain('https://example.com')->token('token'); $response = Mastodon::createStatus('test1'); $response = Mastodon::createStatus('test2', ['visibility' => 'unlisted']); dd($response);
Any API by get
or post
method
use Revolution\Mastodon\Facades\Mastodon; $response = Mastodon::domain('https://example.com') ->token('token') ->get('/timelines/public', ['local' => true]);
use Revolution\Mastodon\Facades\Mastodon; $response = Mastodon::domain('https://example.com') ->token('token') ->post('/follows', ['uri' => '']);
Any API can call by call
method
use Revolution\Mastodon\Facades\Mastodon; $response = Mastodon::domain('https://example.com') ->token('token') ->call('DELETE', '/statuses/1');
Other methods
Check public methods in Contracts/Factory.php
Streaming API
Edit $token
and $url
in streaming_example.php
php ./streaming_example.php
Ctrl+C
to quit.
LICENSE
MIT