使用Google电子表格插件时,Gmail的普通用户遇到了问题。当我加载插件时,据我了解您拥有FULL权限,因此在运行此部分代码时会引发以下错误:
var ui = SpreadsheetApp.getUi(); // Same variations.
var result = ui.prompt(
'Register now',
'Enter your e-mail:',
ui.ButtonSet.OK_CANCEL);
[...]
错误
Service unavailable: Spreadsheets
有趣的是,这仅发生在Gmail帐户上,而不是GSuite用户。 我拥有权限:
Project OAuth Scopes
https://www.googleapis.com/auth/documents
https://www.googleapis.com/auth/script.external_request
https://www.googleapis.com/auth/userinfo.email
https://www.googleapis.com/auth/spreadsheets
https://www.googleapis.com/auth/script.container.ui
https://www.googleapis.com/auth/forms
您对此行为有任何想法吗?它已经工作了很长时间,有一天突然停止工作。
谢谢!