I just discover the tumblr API (http://www.tumblr.com/docs/en/api/v2)
I have created a new blog (protected with password) and also generated an API_KEY.
Here is my ajax request :
$.ajax({
type: "GET",
url : "http://api.tumblr.com/v2/blog/myblog-dev/posts/photo?api_key=MYAPIKEY",
dataType: "jsonp",
success: function (data) {
console.log(data);
}
});
And the result is :
{"meta":{"status":404,"msg":"Not Found"},"response":[]}
I can't figure out what i'm doing wrong, what am I missing ?!