获得粉丝总数

时间:2014-05-27 14:40:11

标签: jquery api instagram

我使用下面的代码来获取我的Instagram帐户的关注者并在我的网站上显示个人资料图片。这很好用。我还想做的是显示我网站上的关注者总数,这就是我需要帮助的地方。

以下是完整的代码,您可以看到我已尝试使用" data.counts.followed_by"。这给出了以下错误:"未捕获的TypeError:无法读取属性' follow_by'未定义"。

我如何实现我的目标?

$(document).ready(function() {

    var $access_token = '{access-token}';
    pollInstagram('https://api.instagram.com/v1/users/xxxxx/followed-by?access_token=xxxxx&count=15');
});

function pollInstagram(next_url, count){

    $.ajax({
        method: "GET",
        url: next_url,
        dataType: "jsonp",
        jsonp: "callback",
        jsonpCallback: "jsonpcallback",
        success: function(data) {
            $.each(data.data, function(i, item) {
                console.log(data.counts.followed_by); <-----        

                var img = '<img style="width: 18%; margin-right: 7px;" src=' + data.data[i].profile_picture + ' />';

                $('#show-images').append(img);
            });
        },
        error: function(jqXHR, textStatus, errorThrown) {
            //alert("Check you internet Connection");
            $("#log").val($("#log").val() + 'Error\n');
        }
    });
}

1 个答案:

答案 0 :(得分:0)