Komut dosyasına web uygulaması olarak erişilmesini devre dışı bırakır.
Ayrıntılı belgeler
getUrl()
Dağıtılmışsa web uygulamasının URL'sini döndürür; aksi takdirde null değerini döndürür. Şu durumda:
kullanıyorsanız bu işlem, geliştirme modu URL'sini döndürür.
// 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());
Return
String — web uygulamasının URL'si
isEnabled()
Komut dosyasına bir web uygulaması olarak erişilebiliyorsa true değerini döndürür.
Return
Boolean — Komut dosyası web uygulaması olarak yayınlanıyorsa true; Değilse false
Desteği sonlandırılan yöntemler
disable()
Kullanımdan kaldırıldı. Bu işlev kullanımdan kaldırıldı ve yeni komut dosyalarında kullanılmamalıdır.
Komut dosyasına web uygulaması olarak erişilmesini devre dışı bırakır. Bu yöntem,
"Yayınla > Web uygulaması olarak dağıt iletişim kutusunu seçip "web uygulamasını devre dışı bırak"ı tıklayabilirsiniz.
[[["Anlaması kolay","easyToUnderstand","thumb-up"],["Sorunumu çözdü","solvedMyProblem","thumb-up"],["Diğer","otherUp","thumb-up"]],[["İhtiyacım olan bilgiler yok","missingTheInformationINeed","thumb-down"],["Çok karmaşık / çok fazla adım var","tooComplicatedTooManySteps","thumb-down"],["Güncel değil","outOfDate","thumb-down"],["Çeviri sorunu","translationIssue","thumb-down"],["Örnek veya kod sorunu","samplesCodeIssue","thumb-down"],["Diğer","otherDown","thumb-down"]],["Son güncelleme tarihi: 2024-08-29 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."]]],[]]