我想在授权用户后写回我的谷歌电子表格。授权完成。但是,要写回电子表格,我已经按照此处所述发送 PUT 请求。它来自 iGoogle 小工具。
我的 XML 元素是:
var cellUrl = "https://spreadsheets.google.com/feeds/cells/" + key + "/od6/private/full/R2C2";
var XMLData = "<entry xmlns='http://www.w3.org/2005/Atom' xmlns:gs='http://schemas.google.com/spreadsheets/2006'>" +
"<id>" + cellUrl + "</id><link rel='edit' type='application/atom+xml' href='" + cellUrl + "'/>" +
"<gs:cell row='2' col='2' inputValue='300'/>" +
"</entry>";
我将 AJAX 请求发送为:
$.ajax({
url: cellUrl,
type: "PUT",
contentType: 'application/atom+xml',
processData: false,
data: XMLData,
error: function(XMLHttpRequest, textStatus, errorThrown){
alert(errorThrown);
}, success: function(data, textStatus, XMLHttpRequest){
alert("Succeeded");
}
});
尽管如此,它并没有回信,也没有显示任何警报!什么是问题?
我应该使用 POST 来回信吗?我怎么做 ?
为了安全起见,我隐藏了 cellURL 密钥。它类似于我的电子表格网址中的键。