我尝试使用QR码更新电子表格以标记出勤率,而且我已经中途停留了。我开始使用Google Sheets脚本更新方法,其中表单发布到电子表格中。到目前为止,工作正常:
// fire off the request to the form
request = $.ajax({
url: "https://script.google.com/macros/s/[ID]/exec",
type: "post",
data: serializedData
});
由于脚本也允许GET
个请求,我尝试使用cURL
以URL形式发送数据,我可以将其编码为QR,与此other answer类似:
curl "https://script.../exec?FirstName=John&LastName=Fields"
但是,我收到302回复,说该页面暂时移至https://script.googleusercontent.com/macros/echo?user_content_key=...
使用curl
参数尝试script.googleusercontent.com
此--data
网址的数据会生成一个网页,其中包含"抱歉,此时无法打开该文件。&# 34;
是否有人成功制作了curl
网址?
顺便说一句,我也在查看引用AJAX post to google spreadsheet的Hawksey。如果我能找到有效的东西,我会更新。