我在谷歌应用程序脚本中使用 UrlFetchApp 来执行获取,如下所示:
var optAdvancedArgs = {
"method": "GET",
"headers": {"Cache-Control": "no-cache", "Pragma": "no-cache"},
};
var response = UrlFetchApp.fetch(url, optAdvancedArgs);
尽管我尝试禁用标头中的缓存,但我得到的响应始终是缓存副本。如果我在控制台中使用相同的 url 执行 wget,我会看到收到最新版本。
我的问题是:执行 UrlFetchApp.fetch 时如何才能真正禁用缓存?我的代码有问题吗?