0

ランダムな投稿にリダイレクトする [blog].tumblr.com/random を使用して選択された tumblr の投稿から最初の画像を取得しようとしています。

これが私がこれまでに持っているものです:

<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.0.2/jquery.min.js"></script>
<script>
    var link = "http://simplyfoodgifs.tumblr.com/random";

   $.ajax({
    type: "GET",
    url: link,
    dataType: "json"
    }).done(function() {
       $(this).find("img").first().find("src")({
           $('body').append("<img src='" + this + "'/>");
       });
    });
</script>

私はまだそれを機能させていません。API を使用する必要がありますか? API で /random を使用する方法がわかりません。

4

0 に答える 0