我试图使用 AJAX(post
请求)调用 eBay FindProducts API,但遇到以下错误:
XMLHttpRequest 无法加载http://open.api.ebay.com/shopping?callname=FindProducts。Access-Control-Allow-Origin 不允许来源http://localhost.com/test.php 。
我的代码:
$.ajax
({
type: "POST",
url: 'http://open.api.ebay.com/shopping?callname=FindProducts',
dataType: ($.browser.msie) ? "text" : "xml",
contentType: 'application/x-javascript',
crossDomain : true,
data: {
'X-EBAY-API-APP-ID' : 'ebayAppId',
'X-EBAY-API-VERSION': '771',
'X-EBAY-API-SITEID': '0',
'X-EBAY-API-REQUEST-ENCODING': 'NV',
'X-EBAY-API-RESPONSE-ENCODING': 'json',
'QueryKeywords' : '753759971632',
'MaxEntries' : '3'
},
success: function (result) {
alert('success');
alert(result);
},
error: function (data) {
alert((data));
}
})
我怎样才能克服这个错误。
我尝试设置dataType : jsonp
(我知道正在检索 XML,但为了解决我将其设置为 jsonP 的错误)。它可以工作,但 jQuery 无法解析 XML,因为预期的 json 响应。