MastodonBotPHP icon indicating copy to clipboard operation
MastodonBotPHP copied to clipboard

A very simple PHP Mastodon API for sending statuses

Results 4 MastodonBotPHP issues
Sort by recently updated
recently updated
newest added

in the examples $statusData = [ 'status' => $statusText, 'privacy' => $privacy, 'language' => $language, ]; should read $statusData = [ 'status' => $statusText, 'visibility' => $privacy, 'language' => $language,...

Hello, I don’t know how to proceed, so I tag it as issue. I would like to send statuses with multiline and/or HTML tags content. When I insert a html...

Bugfixes: * Fixed the array definition of $status_data * Updated the parameter formerly called "visibility" to the new valid name "privacy" (according to Mastodons specs)

The class is now called MastodonAPI, so change class name (instance) to `MastodonAPI` to make it work.