工作了大约一个月后,我现在得到了
所请求的资源上没有“ Access-Control-Allow-Origin”标头。
这是ajax请求的简化版本。
var feedurl = "https://www.google.com/m8/feeds/contacts/EMAIL/full?oauth_token=TOKEN&max-results=50&alt=json&v=3.0";
$.ajax({
url: feedurl,
dataType: "json",
success: function(data) {
console.log(data);
//do stuff
}
});
将dataType
更改为jsonp
并没有任何改变。在Google API控制台中,我将Accept requests from these HTTP referrers (web sites)
设置为https://*.MYWEBSITE.com/*
我唯一的想法是,也许Chrome / Safari在最新更新中的限制越来越严格。