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();
달리 명시되지 않는 한 이 페이지의 콘텐츠에는 Creative Commons Attribution 4.0 라이선스에 따라 라이선스가 부여되며, 코드 샘플에는 Apache 2.0 라이선스에 따라 라이선스가 부여됩니다. 자세한 내용은 Google Developers 사이트 정책을 참조하세요. 자바는 Oracle 및/또는 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."]]],[]]