Deaktiviert den Zugriff auf das Skript als Web-App.
Detaillierte Dokumentation
getUrl()
Gibt die URL der Webanwendung zurück, sofern diese bereitgestellt wurde. Andernfalls wird null zurückgegeben. Wenn Sie
die Webanwendung im Entwicklungsmodus ausführen, wird die URL des 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 Web-App
isEnabled()
Gibt true zurück, wenn das Skript als Webanwendung zugänglich ist.
Rückflug
Boolean: true, wenn das Skript als Webanwendung veröffentlicht wurde; false wenn nicht
Verworfene Methoden
disable()
Veraltet. Diese Funktion ist veraltet und sollte nicht in neuen Skripts verwendet werden.
Deaktiviert den Zugriff auf das Skript als Web-App. Diese Methode entspricht dem Öffnen der
"Veröffentlichen > Als Web-App bereitstellen“ und klicken Sie 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-09-12 (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."]]],[]]