是否可以测试使用DocumentProperties的Google Apps脚本? testing documentation似乎表明这是可能的:
如果您的加载项使用“属性”服务,则属性将保持不变并在下次运行测试配置时保持可用。
但是,当我尝试使用DocumentProperties时,出现以下错误:
Google Apps Script: You do not have permission to call getDocumentProperties
这是我正在尝试的代码:
function appFolderExists(){
PropertiesService.getDocumentProperties().getProperties();
return true;
}
function onOpen() {
FormApp.getUi().createMenu('My Addon')
.addItem('My Addon', 'showSidebar')
.addToUi();
if(!appFolderExists()){
createAppFolder();
}
}
我的插件目前已部署为测试(表单)。它已安装但未启用。
我想向appFolderExists
添加更多逻辑,但我一直陷入困境,因为我无法访问DocumentProperties。我做错了什么,或者这只是测试插件的一个不方便的限制?
答案 0 :(得分:2)
此问题是由安装但未启用的测试添加引起的。因此,在authmode.None中运行代码,在此模式下,您无法访问文档属性
解决方案:
1)运行测试安装并启用
2)确定authmode并运行相关代码:
function open(e){
if (e.authMode == ScriptApp.AuthMode.NONE){
// Code that does not access document properties
} else {
var prop = PropertiesService.getDocumentProperties().getProperties();
// Some code that uses document properties
}
}