我的目标是获取所有tumblr帖子的第一张照片。我收到了验证密钥,但不确定如何继续进行。我有初学者对JavaScript对象的理解,但不知道如何在这种情况下实现它们。 Here is the Tumblr API documentation
Tumblr以此为例:
{
"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
He speaks incredibly fast and in complete paragraphs.</p>",
"ask": true,
"ask_anon": false,
"likes": 12345
}
}
}
但是,我认为这是对象的输出。
我的最终目标是以简单的div
:
<div class="wrapper">
<div class="json-container">
JSON image goes here!
</div>
</div>
任何有关初学者参考的帮助或链接都会很棒。