我有一個簡單的Google Apps腳本ContentService,它發出一個字符串,如「Hello world Sat Jul 14 2012 14:17:21 GMT + 1000(EST)」,網址是https://script.google.com/macros/s/AKfycbxbFFG95mi8PWVNCE8366XaxnXQrt6p7p3OWbclXch_bbWczQ/exec,它對匿名開放。隨意點擊它。代碼是:如何針對Google Apps Script ContentService製作XHR/ajax請求?
function doGet() {
var output = ContentService.createTextOutput()
.setMimeType(ContentService.MimeType.TEXT)
.setContent("Hello world " + new Date());
Logger.log(output.getContent());
return output;
}
當我在瀏覽器中訪問URL時,它返回字符串(pass.png)。當我在XHR(ajax調用)中使用相同的URL時,它會失敗並出現空錯誤。在Chrome中的開發者工具中,重定向是「(取消)」(fail.png)。這裏是重現故障代碼:
<!DOCTYPE html>
<html>
<head>
<script>
function loadXMLDoc() {
xhr=new XMLHttpRequest();
xhr.onreadystatechange=function() {
if (xhr.readyState==4 && xhr.status==200) {
document.getElementById("myDiv").innerHTML=xhr.responseText;
}
};
xhr.open("GET","https://script.google.com/macros/s/AKfycbxbFFG95mi8PWVNCE8366XaxnXQrt6p7p3OWbclXch_bbWczQ/exec",true);
xhr.send();
}
</script>
</head>
<body>
<h2>Using the XMLHttpRequest object</h2>
<div id="myDiv"></div>
<button type="button" onclick="loadXMLDoc()">Get Content via XHR</button>
</body>
</html>
直接請求: XHR請求: 我的問題(希望是不夠具體):如何使從例如一個普通的舊網頁XHR調用.com從匿名Google Apps腳本ContentService腳本獲取內容?
....同樣的問題....有趣。 – 2016-02-13 17:39:36
[Google Apps腳本跨域請求停止工作]的可能重複(http://stackoverflow.com/questions/29525860/google-apps-script-cross-domain-requests-stopped-working) – 2017-02-13 03:05:05