使用post将数据追加到工作表的自定义Google应用程序脚本方法如下:
function doPost(e) {
var sheet = SpreadsheetApp.getActiveSpreadsheet().getActiveSheet();
var data = JSON.parse(e.postData.contents);
// 追加数据到工作表
sheet.appendRow([data.field1, data.field2, data.field3]);
return ContentService.createTextOutput("Data appended successfully");
}
import requests
url = "https://script.google.com/macros/s/xxxxxxxxxxxxxx/exec" # 替换为你的Web应用程序URL
data = {
"field1": "value1",
"field2": "value2",
"field3": "value3"
}
response = requests.post(url, json=data)
print(response.text)
在上述代码中,将url
替换为你在第3步中复制的Web应用程序URL,然后将data
替换为你要追加到工作表的数据。
这种方法可以用于将数据从任何应用程序或工具发送到Google表格中的工作表,实现数据的追加和记录。
领取专属 10元无门槛券
手把手带您无忧上云