Enum AuthorizationStatus | Apps Script | Google for Developers (original) (raw)
Enum AuthorizationStatus
Stay organized with collections Save and categorize content based on your preferences.
AuthorizationStatus
An enumeration denoting the authorization status of a script.
To call an enum, you call its parent class, name, and property. For example, ScriptApp.AuthorizationStatus.REQUIRED
.
Properties
Property | Type | Description |
---|---|---|
REQUIRED | Enum | The user needs to authorize this script to use one or more services. In most cases, the script prompts the user for authorization the next time it runs; however, if the script is published as an add-on that uses installable triggers, the trigger runs the script without prompting for authorization but throws an exception if the script attempts to call the unauthorized service. |
NOT_REQUIRED | Enum | The user has granted this script all the authorization it currently requires. |
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-12-02 UTC.