我正在尝试连接到域配置文件,但没有用于此的 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
任何帮助将非常感激!