以下是一个示例代码,展示了如何使用Apps脚本中的UrlFetchApp类进行POST请求:
function doPost(e) { var data = JSON.parse(e.postData.contents); var name = data.name; var email = data.email;
// 将数据存储在谷歌表格中 var sheet = SpreadsheetApp.getActiveSheet(); sheet.appendRow([name, email]);
return ContentService.createTextOutput("Data added successfully"); }
在上面的代码中,我们首先使用JSON.parse()方法来解析POST请求中的数据。然后,我们将数据存储在谷歌表格中使用SpreadsheetApp类中的getActiveSheet()函数。最后,我们使用ContentService.createTextOutput()函数将文本输出返回给POST请求。
上一篇:AppsScriptMailApp抛出错误:异常:无效电子邮件:[L<?>(第11行,文件代码)
下一篇:AppsScriptprojects.deployments.create报错GaxiosError:请求的实体未找到