Tumblr API - 'tag crawling' 脚本不显示图像

Tumblr API - 'tag crawling' script doesn't show the images

到目前为止我有这个。它应该从 'cyberpunk' 标签和 post 抓取图像到 <body>,但它不起作用。为什么?有关 Tumblr API 的更多信息,请参见 here

<script>
  $(document).ready(function (){
    var link = "http://api.tumblr.com/v2/tagged?tag=cyberpunk";
    $.ajax({
      type: "GET",
      url : link,
      dataType: "jsonp", 
      data: {
          api_key: "PgAKpKfv1Tcjo1uhsKEuriThhwH9XDJonRobaGwckw8RJt2tos"
      }
    }).done(function( data ) {
      $.each(data.response.posts, function(){
        var _photos = this.photos;

        $.each(_photos, function(){
          $('body').append("<img src='" + this.original_size.url + "'/>");
        });
      });
    });
  });
</script>

只是 data.response,不是 data.response.posts,所以

//your code...
//..

 $.each(data.response, function(){ //
//.. rest of your code