2

您好,我正在通过 OAuth 2.0 对用户进行身份验证,并且XMLHttpRequest cannot load https://www.box.com/api/oauth2/token. Origin http://localhost is not allowed by Access-Control-Allow-Origin.在发出以下 POST 请求时出现 Access-Control-Allow-Origin 错误 ( ):

var xhr=new XMLHttpRequest();
xhr.open('POST',path,true);
xhr.setRequestHeader("Content-type","application/x-www-form-urlencoded");
xhr.onload = function() {
    var text = xhr.responseText;
    alert('Response from request to ' + path + ': ' + text);
};
xhr.onerror = function() {
    alert('Woops, there was an error making the request.');
};
xhr.send(params);

任何帮助将不胜感激!我研究了 CORS、JSONP 并添加了 callback=? 到网址,但我尝试过的没有任何工作。

4

2 回答 2

1

http://developers.box.com/docs/

Box API 支持逐个应用的 CORS。如果您正在构建需要 CORS 的应用程序,请联系我们并提供您的用例描述。

于 2013-05-02T08:44:47.427 回答
0

另一种方法是使用YQL,正如他们的开发人员在常见问题解答中所描述的那样。

于 2013-12-17T11:49:38.977 回答