Debug a Google Apps Script which is triggered by post request?
问题 I have a simple script in Google Sheets which is trigger by a command in Slack and just adds the Slack message as a new row. It is quite a simple function and is deployed as a web app and does work: function doPost(req) { var sheet = SpreadsheetApp.openById('[My Sheet Id]'); var params = req.parameters; Logger.log(params.text); sheet.appendRow(params.text); return ContentService.createTextOutput("Saved your entry:" + params.text); } However the Logger.log function never logs anything in the