1

我正在尝试连接到域配置文件,但没有用于此的 Javascript 库。

我已经尝试了很多东西,但无法让它发挥作用。

var xhr = new XMLHttpRequest();
var oauthToken = gapi.auth.getToken();
xhr.open('GET',
   'https://www.google.com/m8/feeds/profiles/domain/ditotest.com/full');
   xhr.setRequestHeader('Authorization','Bearer ' + oauthToken.access_token);
   xhr.setRequestHeader('Gdata-version', '3.0');
xhr.send(null);

console.log(xhr.status);

这个错误:

Uncaught Error: InvalidStateError: DOM Exception 11 index.html:102
OPTIONS https://www.google.com/m8/feeds/profiles/domain/ditotest.com/full 405 (Method Not Allowed) index.html:100
XMLHttpRequest cannot load https://www.google.com/m8/feeds/profiles/domain/ditotest.com/full. Origin https://googledrive.com is not allowed by Access-Control-Allow-Origin. index.html:1

任何帮助将非常感激!

4

1 回答 1

0

您不能对另一个域(跨域)执行 XMLHttpRequest。您将不得不尝试使用 JSONP,但不确定该 API 是否接受参数 &callback=

所以客户端,非常艰难。

您可以做的是“代理它”,当我需要来自其他域的浏览器中的信息时,我通常会这样做。创建一个调用远程 URL 的服务器脚本(例如 php)并使 javascript 调用本地服务器脚本。

祝你好运!

于 2013-04-25T00:52:33.513 回答