我想使用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");
}
});
答案 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");
}
});