0
votes
0answers
79 views

How to post HTML body on tumblr from iOS?

I would like to format my post on tumblr. For that, I am trying to post HTML as text post on tumblr. Here is what I am doing. If I use the following html, then it is getting posted properly on ...
0
votes
0answers
128 views

Upload an Image (with description) to Tumblr

so I want to have a .php script that uploads an image every 3 hours to my Tumblr (via a cronjob). I used to have a working script, however since Tumblr no longer supports their v1 API I am lost. I ...
0
votes
1answer
490 views

Endless scroll issue tumblr, posts at bottom of page “stack”

Here's the issue: tumblr theme that I am using is the NTA 3 column option found on this page (http://themes.ville-noire.com/), which says that I should have 3 columns, infinite scrolling and be able ...
1
vote
2answers
127 views

Tumblr like button on posts cannot be re-positioned?

I'm using this code from ThinkingStiff http://like-button.tumblr.com/ I don't understand how to re-position it. I tried to reposition it on this theme http://f1rst5.tumblr.com/ But when I click on ...
1
vote
2answers
305 views

Display Tumblr Posts in iPhone

How can I display tumblr blog posts on an app just like how the mobile version shows it instead of loading the URL on a UIWebView?
1
vote
0answers
495 views

Tumblr API v2 post getting error not authorized

When I post an article with a few words it is Ok but when I try to post an article that has more than 100 words get the error "not authorized". Here is the post request (I changed the oauth tokens to ...
1
vote
1answer
544 views

Making a POST request to Tumblr's API inside a Chrome Extension

I'm trying to make a text post to Tumblr using their API and chrome_ex_oauth. API: http://www.tumblr.com/docs/en/api/v2#posting chrome_ex_oauth: ...
1
vote
1answer
4k views

How to create permalink pages for individual posts and notes on Tumblr

I'm currently creating my first custom theme for Tumblr and I can't find any explanation of how permalink pages for posts and that post's notes work or how they are written, how do I go about this? ...
1
vote
1answer
798 views

How to add a new post with tumblrAPI V2 oauth php

$request_data = http_build_query( array( 'oauth_token' => 'xxx', 'api_key' => 'xxx', 'type' => 'hello', 'title' => 'this is title', ...
0
votes
1answer
1k views

Posting an image to the Tumblr API

So I'm writing a small java app to dump a directory of images into the user's tumblr blog, using their provided API: http://www.tumblr.com/docs/en/api I've gotten plaintext posting to work, but now I ...
0
votes
0answers
398 views

How do I automatically post my Tumblr posts

How do I automatically post or publish my Tumblr posts to my Facebook page? I don't mean the News Feed one, but a Facebook page.
3
votes
1answer
1k views

Image uploading from Python or cURL to Tumblr?

I'm working on a project that involves uploading an image to tumblr from Python. I've had luck using Tumblr's API( http://www.tumblr.com/docs/en/api ) in doing regular text-posts, but image uploads ...