我正在尝试使用单元格提要更改单元格的内容来更新 Google 电子表格的单元格。
我已经使用了 Oauth 2.0 身份验证并且我拥有 oauth 令牌。
我用来更新特定单元格的代码(来自谷歌小工具)是:
var dataEntry='<entry xmlns="http://www.w3.org/2005/Atom" xmlns:gs="http://schemas.google.com/spreadsheets/2006">\
<id>https://spreadsheets.google.com/feeds/cells/xxxxxxx/od6/private/full/R2C2/</id>\
<link rel="edit" type="application/atom+xml"\
href="https://spreadsheets.google.com/feeds/cells/xxx/od6/private/full/R2C2/"/>\
<gs:cell row="2" col="2" inputValue="prova"/>\
</entry>';
$.ajax({
url: "https://spreadsheets.google.com/feeds/cells/xxxx/od6/private/full/R2C2/",
type: "PUT",
contentType: 'jsonp',
processData: false,
crossDomain: true,
data: dataEntry,
error: function(XMLHttpRequest, textStatus, errorThrown){
alert(errorThrown);
}, success: function(data, textStatus, XMLHttpRequest){
alert("Succeeded");
},
beforeSend: setHeader
});
我收到的错误是关于访问控制允许来源
任何人都可以告诉我如何解决这个错误?
先感谢您