2

我试图弄清楚 URL 中的参数如何传递给doGet()函数。我试着做

https://script.google.com/a/macros/[my domain].com/s/[some random string generated by GAS]其次是"&variable=data"

但它只给了我这个错误: “对不起,您请求的文件不存在。”

仅供参考,https://script.google.com/a/macros/[my domain].com/s/[some random string generated by GAS]没有"&variable=data".

4

1 回答 1

4

要将 GET 参数添加到 URL 的末尾,您需要使用?.

所以你的 URL 应该是这样的

http://script.[.......]/exec?variable=data&otherVariable=otherData

此外,请务必发布您的应用程序以获取此功能。文件 > 管理版本。发布 > 发布为 Web 应用程序...

于 2013-02-06T19:14:49.500 回答