Restituisce l'URL dell'app web, se ne è stata eseguita il deployment. altrimenti restituisce null. Se
stanno eseguendo l'applicazione web in modalità sviluppo, viene restituito l'URL della modalità sviluppo.
// 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());
Invio
String: l'URL dell'app web.
isEnabled()
Restituisce true se lo script è accessibile come app web.
Invio
Boolean: true se lo script viene pubblicato come app web; false in caso contrario
Metodi deprecati
disable()
Obsoleta. Questa funzione è deprecata e non deve essere utilizzata nei nuovi script.
Disabilita l'accesso allo script come app web. Questo metodo equivale ad aprire
"Pubblica > Esegui il deployment come app web" e facendo clic su "Disattiva app web".
[[["Facile da capire","easyToUnderstand","thumb-up"],["Il problema è stato risolto","solvedMyProblem","thumb-up"],["Altra","otherUp","thumb-up"]],[["Mancano le informazioni di cui ho bisogno","missingTheInformationINeed","thumb-down"],["Troppo complicato/troppi passaggi","tooComplicatedTooManySteps","thumb-down"],["Obsoleti","outOfDate","thumb-down"],["Problema di traduzione","translationIssue","thumb-down"],["Problema relativo a esempi/codice","samplesCodeIssue","thumb-down"],["Altra","otherDown","thumb-down"]],["Ultimo aggiornamento 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."]]],[]]