本文介绍了使用Instagram API的Access-Control-Allow-Origin的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试使用以下代码获取instagram feed
I am trying to get my instagram feed with the following code
$.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()
呼叫,如下所示:
Instagram API supports JSONP
, so add &callback=?
to the url and add dataType: "jsonp"
to the $.ajax()
call, like below:
$.ajax({
url: 'https://api.instagram.com/v1/users/xxxxxxx/media/recent/?access_token=xxxxxxxxxxx&callback=?',
error: function() {
alert('error');
},
success: function(data) {
alert('yes');
},
type: 'GET',
dataType: "jsonp"
});
这篇关于使用Instagram API的Access-Control-Allow-Origin的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!