我试图将Tumblr博客纳入一个网站。 具体地说,我要显示最新的文本。
我已经看过Tumblr AP,一切都非常容易,但我无法工作。
According to the documentation for Tumblr API v2 (http://www.tumblr.com/docs/en/api/v2) this is the call I need:
http://api.tumblr.com/v2/blog/blog.tumblr.com/posts/text?api_key=KEY&limit=1 and if I put it in my browser I get what I want.
然而,如果我尝试用下文所述分类1.7.1收回其职务名称:
$.getJSON( http://api.tumblr.com/v2/blog/blog.tumblr.com/posts/text?api_key=<KEY>&limit=1 , function(data) {
console.log("data.posts[0].title");
});
我得到空洞的答复。
我失踪了吗?
感谢您的帮助。
SIG