我正在尝试使用以下
代码获取我的Instagram
Feed
$.ajax({
url: 'https://api.instagram.com/v1/users/xxxxxxx/media/recent/?access_token=xxxxxxxxxxx',error: function() {
alert('error');
},success: function(data) {
alert('yes');
},type: 'GET'
});
我得到的错误是
请求的资源上不存在“Access-Control-Allow-Origin”标头.
有工作吗?
Instagram API
支持JSONP,所以
添加& callback =?到url并将dataType:“jsonp”
添加到$.ajax()
调用,如下所示:
$.ajax({
url: 'https://api.instagram.com/v1/users/xxxxxxx/media/recent/?access_token=xxxxxxxxxxx&callback=?',type: 'GET',dataType: "jsonp"
});
原文链接:https://www.f2er.com/ajax/160035.html