使用jQuery从instagram加载关注列表

时间:2014-05-12 07:26:08

标签: jquery list instagram

我想使用jQuery获取Instagram关注者列表,我使用以下代码,但它不起作用。我该怎么办?

$.ajax({
    url: "https://api.instagram.com/v1/users/1574083/follows?",
    dataType: 'GET',
    data: { access_token: token },
    success: function (result) {
        alert(result.meta.code);
        alert(result.data.username);
    },
    error: function () {
        alert("error");
    }
});

1 个答案:

答案 0 :(得分:1)

尝试就像这样

$.ajax({
    url: "https://api.instagram.com/v1/users/1574083/follows?",
    type: 'GET', // type instead of dataType
    dataType: 'json', // or jsonp for cross-domain 
    data: {
        access_token: token
    },
    success: function (result) {
        alert(result.meta.code);
        alert(result.data.username);
    },
    error: function () {
        alert("error");
    }
});