function doGet(e) { const url = "https://docs.google.com/spreadsheet????????????"; const ss = SpreadsheetApp.openByUrl(url); const sheet = ss.getSheets()[0]; const params = { "timestamp": new Date(), "temperature": e.parameter.temperature, "humidity": e.parameter.humidity }; sheet.appendRow(Object.values(params)); return ContentService.createTextOutput('sccess'); }