Komut dosyasına web uygulaması olarak erişilmesini devre dışı bırakır.
Ayrıntılı dokümanlar
getUrl()
Dağıtılmışsa web uygulamasının URL'sini, aksi takdirde null değerini döndürür. Geliştirme modu web uygulamasını çalıştırıyorsanız bu, 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 web uygulaması olarak erişilebiliyorsa true değerini döndürür.
Return
Boolean: Komut dosyası web uygulaması olarak yayınlandıysa true, aksi takdirde false
Kullanımdan kaldırılan yöntemler
disable()
Kullanımdan kaldırıldı. Bu işlevin desteği sonlandırılmıştır 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 açıp "Web uygulamasını devre dışı bırak"ı tıklamakla aynıdır.
[[["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-12-22 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."]]],[]]