FoPost LogoFoPost Docs
WordPressPlatform Configuration

Tumblr

Configure Tumblr in the FoPost WordPress plugin.

Tumblr

Configure the OwlStack WordPress plugin to publish posts to your Tumblr blog.

Prerequisites

You need a Tumblr account and API access.

Getting Tumblr API Credentials

  1. Go to the Tumblr API Console
  2. Register a new application
  3. Note your OAuth Consumer Key and Secret
  4. Generate an Access Token using OAuth 1.0a
  5. Find your Blog Identifier — this is your blog's URL name (e.g., myblog.tumblr.com or myblog)

Settings

Navigate to OwlStack > Tumblr in the WordPress admin.

FieldDescription
Access TokenTumblr OAuth access token
Blog IdentifierYour blog name or full hostname (e.g., myblog or myblog.tumblr.com)

Step-by-step

  1. Go to OwlStack > Tumblr in your WordPress admin
  2. Paste your Access Token
  3. Enter your Blog Identifier
  4. Click Save Settings

Testing

After saving your settings:

  1. Click Test Connection to verify your access token and blog
  2. Click Send Test Message to create a test post
  3. Check your Tumblr blog to confirm the post appeared

Publishing

Once configured, Tumblr appears as a toggle in the OwlStack meta box on post edit screens.

Programmatic publishing

// Simple text post
owlstack()->tumblr('Hello from WordPress!');

// Post with a photo
owlstack()->tumblr('Check out this image!', [
    'type' => 'photo',
    'url'  => 'https://example.com/image.jpg',
]);

Constraints

ConstraintValue
Max post typesText, Photo, Quote, Link, Chat, Audio, Video
Max photo size10 MB
Max video size500 MB
Supported image typesJPEG, PNG, GIF

Troubleshooting

IssueSolution
"Unauthorized" errorAccess token may be expired or invalid
"Blog not found"Verify the Blog Identifier matches your blog's URL
Post not visibleCheck your blog's visibility settings and queue
Rate limitedTumblr limits to ~250 API calls per hour

On this page