웹 앱이 배포된 경우 웹 앱의 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()
지원 중단되었습니다. 이 함수는 지원 중단되었으며 새 스크립트에서 사용해서는 안 됩니다.
스크립트에 웹 앱으로 액세스할 수 없도록 합니다. 이 메서드는 '게시 > 웹 앱으로 배포' 대화상자를 열고 '웹 앱 사용 중지'를 클릭하는 것과 같습니다.
[[["이해하기 쉬움","easyToUnderstand","thumb-up"],["문제가 해결됨","solvedMyProblem","thumb-up"],["기타","otherUp","thumb-up"]],[["필요한 정보가 없음","missingTheInformationINeed","thumb-down"],["너무 복잡함/단계 수가 너무 많음","tooComplicatedTooManySteps","thumb-down"],["오래됨","outOfDate","thumb-down"],["번역 문제","translationIssue","thumb-down"],["샘플/코드 문제","samplesCodeIssue","thumb-down"],["기타","otherDown","thumb-down"]],["최종 업데이트: 2024-12-02(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."]]],[]]