我想知道时间触发器是否记得“用户上下文”。我的谷歌应用程序脚本查看用户谷歌驱动器文件夹,我想知道是否可以创建时间触发器来检查例如谷歌驱动器的每小时内容。
我正在使用此配置运行脚本:
Execute the app as : "User accessing the web app"
和时间触发:
var later = new Date(new Date().getTime() + 1 * 60 * 60 * 1000);
ScriptApp.newTrigger("timeDrivenMethod").timeBased().at(later).create();