7

我想创建一个从某个标签中提取图像的应用程序,但只能从某个用户名中提取。例如:我希望显示#skullcandysnow 图像,但只显示来自“skullcandy”帐户名称的图像。

这是我拉标签的方式:

 $(function() {

 $.ajax({
        type: "GET",
        dataType: "jsonp",
        cache: false,
        url: "https://api.instagram.com/v1/tags/skullcandysnow/media/recent?client_id=d1685ded02da4c5eb2b08632f1256119&access_token=fce470c159274e2b9482976f93fd3435",
        success: function(data) {



            for (var i = 0; i < 10; i++) {

        $(".SC-IG").append("<img class='SC-instagram-image' src='" + data.data[i].images.low_resolution.url +"' /><div class='counts'><img src='images/skullcandyad_04.jpg'><h3 class='ig-likescount'>" + data.data[i].likes.count +"</h3><h3 class='ig-commentscount'>" + data.data[i].comments.count +"</h3></div> ");   


        }
       }

    });
});

你可以在这里查看我正在做的事情:http: //yobeat.com/zz_testing/yobeatinstagramwidget_v3.html

谢谢!

4

1 回答 1

2

查看用户在他的“弄清楚”网站上提供的代码,解决方案如下:

imgLimit = 1000;
// Grab all TAGS of choice
$.ajax({
    type: "GET",
    dataType: "jsonp",
    cache: false,
    url: "https://api.instagram.com/v1/tags/TAG_OF_CHOICE/media/recent?client_id=CLIENT_ID&access_token=ACCESS_TOKEN",
    success: function(data) { 
    // Loop through the data and only add the images that match a certain user ID
        for (var i = 0; i < imgLimit; i++) {
            var usertag = data.data[i].user.id;
            if (usertag === "USER_ID_OF_CHOICE") {
                // Add image to page
                addImage(data.data[i]);
            }
       }
    }
});
于 2013-09-09T14:29:18.160 回答