Class Service
サービス
スクリプトの公開内容にアクセスして操作する。
メソッド
メソッド | 戻り値の型 | 概要 |
getUrl() | String | ウェブアプリがデプロイされている場合は、その URL を返します。それ以外の場合は null を返します。 |
isEnabled() | Boolean | スクリプトがウェブアプリとしてアクセスできる場合に true を返します。 |
サポート終了のメソッド
メソッド | 戻り値の型 | 概要 |
disable()
| void | スクリプトをウェブアプリとしてアクセスできないようにします。 |
詳細なドキュメント
getUrl()
ウェブアプリの URL を返します(デプロイされている場合)。それ以外の場合は null
を返します。もし
開発モードのウェブアプリを実行している場合は、開発モードの URL が返されます。
// 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());
戻る
String
- ウェブアプリの URL
isEnabled()
スクリプトがウェブアプリとしてアクセスできる場合に true
を返します。
戻る
Boolean
- スクリプトがウェブアプリとして公開されている場合は true
。含まれていない場合は false
サポート終了のメソッド
disable()
非推奨。この関数は非推奨のため、新しいスクリプトでは使用しないでください。
スクリプトをウェブアプリとしてアクセスできないようにします。このメソッドは、
"公開 >ウェブアプリとしてデプロイする」[ウェブ アプリケーションを無効にする] をクリックします。
ScriptApp.getService().disable();
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2024-09-12 UTC。
[null,null,["最終更新日 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."]]],[]]