Enum AuthorizationStatus
AuthorizationStatus
用于表示脚本授权状态的枚举。
若要调用枚举,您可以调用其父类、名称和属性。例如
ScriptApp.AuthorizationStatus.REQUIRED
。
属性
媒体资源 | 类型 | 说明 |
REQUIRED | Enum | 用户需要授权此脚本使用一项或多项服务。在大多数情况下,该脚本会在下次运行时提示用户进行授权;但是,如果该脚本作为使用可安装的触发器的插件发布,则触发器会在不提示授权的情况下运行该脚本,但如果该脚本尝试调用未经授权的服务,则会抛出异常。 |
NOT_REQUIRED | Enum | 用户已授予此脚本当前所需的全部授权。 |
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可获得了许可,并且代码示例已根据 Apache 2.0 许可获得了许可。有关详情,请参阅 Google 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2023-12-01。
[null,null,["最后更新时间 (UTC):2023-12-01。"],[[["AuthorizationStatus is an enumeration used to represent the authorization level of a script."],["Scripts may require user authorization to access certain services, indicated by `ScriptApp.AuthorizationStatus.REQUIRED`."],["If a script has all necessary authorizations, its status is represented by `ScriptApp.AuthorizationStatus.NOT_REQUIRED`."],["Add-ons using installable triggers might run without explicit authorization prompts but will throw exceptions when attempting to use unauthorized services."]]],[]]