我已经设置了一个 Tumblr 帐户并注册了我的应用程序以对其进行身份验证。
Tumblr 文档:http ://www.tumblr.com/docs/en/api/v2
我理解 API 输出 JSON 是这样的:
{
"meta": {
"status": 200,
"msg": "OK"
},
"response": {
"blog": {
"title": "David's Log",
"posts": 3456,
"name": "david",
"url": "http:\/\/david.tumblr.com\/",
"updated": 1308953007,
"description": "<p><strong>Mr. Karp<\/strong> is tall and skinny, with
unflinching blue eyes a mop of brown hair.\r\n
"ask": true,
"ask_anon": false,
"likes": 12345
}
}
}
很好,但是文档到此为止。我不知道如何获取这些信息并将其显示在我的网站上。
我想你会得到它的方式是这样的:
$.ajax({
url: "http://api.tumblr.com/v2/blog/myblog.tumblr.com/info?api-key=myapikey",
dataType: 'jsonp',
success: function(results){
console.log(results);
}
});
但这无济于事。
谁能帮我吗?谢谢