Hiermit wird verhindert, dass auf das Script als Webanwendung zugegriffen wird.
Detaillierte Dokumentation
getUrl()
Gibt die URL der Webanwendung zurück, falls sie bereitgestellt wurde. Andernfalls wird null zurückgegeben. Wenn Sie die Web-App im Entwicklungsmodus ausführen, wird die URL für den Entwicklungsmodus zurückgegeben.
// Mail the URL of the published web app.
MailApp.sendMail(
'myself@example.com',
'My Snazzy App',
`My new app is now available at ${ScriptApp.getService().getUrl()}`,
);
Rückflug
String – die URL der Webanwendung
isEnabled()
Gibt true zurück, wenn das Script als Webanwendung zugänglich ist.
Rückflug
Boolean – true, wenn das Script als Webanwendung veröffentlicht wird; false, wenn nicht
Eingestellte Methoden
disable()
Veraltet. Diese Funktion wurde eingestellt und sollte in neuen Scripts nicht verwendet werden.
Hiermit wird verhindert, dass auf das Script als Web-App zugegriffen wird. Das entspricht dem Öffnen des Dialogfelds „Veröffentlichen > Als Web-App bereitstellen“ und dem Klicken auf „Web-App deaktivieren“.
[[["Leicht verständlich","easyToUnderstand","thumb-up"],["Mein Problem wurde gelöst","solvedMyProblem","thumb-up"],["Sonstiges","otherUp","thumb-up"]],[["Benötigte Informationen nicht gefunden","missingTheInformationINeed","thumb-down"],["Zu umständlich/zu viele Schritte","tooComplicatedTooManySteps","thumb-down"],["Nicht mehr aktuell","outOfDate","thumb-down"],["Problem mit der Übersetzung","translationIssue","thumb-down"],["Problem mit Beispielen/Code","samplesCodeIssue","thumb-down"],["Sonstiges","otherDown","thumb-down"]],["Zuletzt aktualisiert: 2024-12-02 (UTC)."],[[["The `ScriptApp` service allows you to control and interact with the deployment of your script as a web application."],["You can retrieve the web app's URL using `getUrl()`, check its accessibility status with `isEnabled()`, and previously, disable it using the now deprecated `disable()` method."],["The `disable()` method has been deprecated and should no longer be used in new scripts, replaced by the \"Publish \u003e Deploy as web app\" dialog for disabling."],["When deploying your script as a web app, you can use provided methods to obtain its URL and determine if it's enabled for access."]]],[]]