这是一个 javascript(谷歌应用程序脚本)POST,它正在处理当前表单(有一个字段!)也许你可以从中得到你需要的东西:
function sendHttpPost() {
var fish = "I am a mackerel";
   var payload =
   {
     "entry.2071121932" : fish
   };
   // Because payload is a JavaScript object, it will be interpreted as
   // an HTML form. (We do not need to specify contentType; it will
   // automatically default to either 'application/x-www-form-urlencoded'
   // or 'multipart/form-data')
   var options =
   {
     "method" : "POST",
     "payload" : payload,
      "muteHttpExceptions": true
   };
 var response =  UrlFetchApp.fetch("https://docs.google.com/forms/d/this is the form ... key/formResponse", options);
Logger.log(response.getContentText())
 }