Simple class for making requests to the Bluesky API/AT protocol. Not affiliated with Bluesky.
Starting a session requires a handle and password.
use cjrasmussen\BlueskyApi\BlueskyApi;
$bluesky = new BlueskyApi();
try {
$bluesky->auth($handle, $app_password);
} catch (Exception $e) {
// TODO: Handle the exception however you want
}
If you're running up against rate limits by repeatedly creating a session, you may want to cache a refresh token and use that to refresh your session instead of starting a new one. Cache it however you want for later usage, or see the session helper below.
$refresh_token = $bluesky->getRefreshToken();
You can use that cached refresh token later to refresh your session instead of starting a new session.
try {
$bluesky->auth($refresh_token);
} catch (Exception $e) {
// TODO: Handle the exception however you want
}
$args = [
'collection' => 'app.bsky.feed.post',
'repo' => $bluesky->getAccountDid(),
'record' => [
'text' => 'Testing #TestingInProduction',
'langs' => ['en'],
'createdAt' => date('c'),
'$type' => 'app.bsky.feed.post',
],
];
$data = $bluesky->request('POST', 'com.atproto.repo.createRecord', $args);
This assumes that your image file is a PNG
$body = file_get_contents($file);
$response = $bluesky->request('POST', 'com.atproto.repo.uploadBlob', [], $body, 'image/png');
$image = $response->blob;
$args = [
'collection' => 'app.bsky.feed.post',
'repo' => $bluesky->getAccountDid(),
'record' => [
'text' => 'Testing with an image #TestingInProduction',
'langs' => ['en'],
'createdAt' => date('c'),
'$type' => 'app.bsky.feed.post',
'embed' => [
'$type' => 'app.bsky.embed.images',
'images' => [
[
'alt' => 'A test image',
'image' => $image,
],
],
],
],
];
$response = $bluesky->request('POST', 'com.atproto.repo.createRecord', $args);
As mentioned above, you can manually cache a session refresh token however you want. The BlueskyApiSessionHelper::auth method is one way of doing that. Provide the path to a file containing a refresh token and the method will refresh your session and update the cache file with the new refresh token. Optionally provide a handle and (app) password to fall back on creating a new session if the refresh token fails.
use cjrasmussen\BlueskyApi\BlueskyApi;
use cjrasmussen\BlueskyApi\BlueskyApiSessionHelper;
$blueskyApi = new BlueskyApi();
$blueskyApiSessionHelper = new BlueskyApiSessionHelper($blueskyApi);
try {
$blueskyApiSessionHelper->auth($refresh_token_path, $handle, $password);
} catch (Exception $e) {
// TODO: Handle the exception however you want
}
Bluesky returns data about rate limits in the header of each API request response. The most recent request response header can be accessed as a string as follows:
$blueskyApi->getLastResponseHeader();
The header can then be parsed as necessary.
Simply add a dependency on cjrasmussen/bluesky-api to your composer.json file if you use Composer to manage the dependencies of your project:
composer require cjrasmussen/bluesky-api
Although it's recommended to use Composer, you can actually include the file(s) any way you want.
It's not much, but I do have some Bluesky API-related stuff on my blog. Additionally, there's an unofficial Discord for Bluesky API users with a PHP-focused channel.
BlueskyApi is MIT licensed.