我正在创建Gmail插件,由于某种原因,当我保存代码时,AppScript已停止更新。直到上周,我都会进行更改,保存我的代码,刷新Gmail并添加更新。使用HEAD版本将该插件作为开发人员插件安装。
第一个问题,进行更改后我是否必须重新部署?据我在文档中看到的,上述方法应该可以正常工作。
我正在使用Google Oauth2库登录外部服务。上周一切正常,现在我刚刚注意到执行提示中出现了这些错误...
Method Properties.deleteProperty invoked in the global scope.
File: Storage
Line: 125
This function invocation will fail when the script is run as an Add-on in AuthMode.NONE.
Method Cache.remove invoked in the global scope.
File: Storage
Line: 127
This function invocation will fail when the script is run as an Add-on in AuthMode.NONE.
Method ScriptApp.getScriptId invoked in the global scope.
File: Service
Line: 36
This function invocation will fail when the script is run as an Add-on in AuthMode.NONE.
我也没有访问错误所指文件的权限,那么我应该如何修复它们?
如果执行提示中有错误,是否会阻止代码更新?那是我看不到我的更新通过的原因吗?
我知道更新不起作用,因为在以前的日志中什么也没看到。
非常感谢您的帮助。我花了几个小时来研究文档,SO和问题跟踪程序,以试图解决这个问题。