Platforms
Tumblr
Publishing to Tumblr blogs.
Tumblr
Publish to Tumblr blogs using NPF (Neue Post Format) content blocks with support for draft, queue, and private states.
Connect
Connect Tumblr in the OwlStack dashboard:
- Go to Project Settings > Platforms > Tumblr
- Click Connect with Tumblr
- Authorize OwlStack via OAuth
- Select the target blog
Publishing
use OwlStack\Enums\Platform;
$result = $client->publish($post, [Platform::Tumblr]);Options
| Option | Type | Description |
|---|---|---|
post_type | string | text, image, video, link, audio |
state | string | published, draft, queue, private |
slug | string | URL slug for the post |
$result = $client->publish($post, [Platform::Tumblr], [
'post_type' => 'text',
'state' => 'published',
'slug' => 'my-post-slug',
]);Constraints
| Constraint | Value |
|---|---|
| Max text length | 4,096 characters |
| Content format | NPF content blocks |