In order to determine whether the log of Web Apps created by Google Apps Script can be shown in the log, the following steps were performed:
- Create a new Google Apps Script project.
- Add the following script:
function doGet(e) { Logger.log(JSON.stringify(e)); return HtmlService.createHtmlOutput('<b>Hello world!</b>'); }
- Deploy Web Apps as
Execute as: Me
andWho has access to the app: Anyone
. - Share the Google Apps Script project as
Anyone with the link
. - Open a browser in incognito mode. Ensure you are not logged into a Google account.
- Access the web app and confirm that "Hello world!" is displayed.
- Check the log at "Executions." When the "REFRESH" button is clicked multiple times, "No logs are available for this execution" is shown.
- Close the browser.
- Open a browser in incognito mode. Log in to a Google account that is different from the owner of the Google Apps Script project.
- Access the web app and confirm that "Hello world!" is displayed.
- Check the log at "Executions." The following log entry is shown:
{"contentLength":-1,"contextPath":"","parameters":{},"queryString":"","parameter":{}}
- Close the browser.
- Remove the sharing settings for the Google Apps Script project.
- Open a browser in incognito mode. Log in to a Google account that is different from the owner of the Google Apps Script project.
- Access the web app and confirm that "Hello world!" is displayed.
- Check the log at "Executions." The log is not shown.
Based on these results, under the following conditions:
- Deploy Web Apps as
Execute as: Me
andWho has access to the app: Anyone
. - Access the web app using a browser.
The following outcomes are observed:
Logged into Google | Share Google Apps Script Project | Log Visibility |
---|---|---|
No | No | No |
No | Yes | No |
Yes | No | No |
Yes | Yes | Yes |
- This is for the discussion at here.