我正在试图弄清楚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".
答案 0 :(得分:4)
要将GET参数添加到网址末尾,您需要使用?
。
所以你的网址应该是这样的
http://script.[.......]/exec?variable=data&otherVariable=otherData
此外,请务必发布您的应用以获得此功能。文件>管理版本。发布>发布为Web App ...