我想使用 cURL 将文本文件的内容发送到 Google 电子表格。
测试.txt
this is the message from local
在本地外壳上
curl -F name=value -F data1=@test.txt "https://script.google.com/macros/s/xxxxxxxxxxxxxxxxxxxxxxxxxxx/exec"
在 Google 电子表格中的 Google Apps 脚本中
function doPost(e){
Logger.log(e);
}
那么日志是
Fri Jul 12 08:34:28 PDT 2013 INFO: {queryString=null, parameter={name=value}, contextPath=, parameters={name=[value]}, contentLength=316}
我找不到我发送的参数“data1”。
那么我怎样才能收到我发送的文件的内容呢?
先感谢您。