Last active
January 17, 2025 06:41
-
-
Save fxprime/8272d232aa7a210bd498d64098afab56 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function doGet(e) { | |
var timestamp = e.parameter.timestamp; | |
var uid = e.parameter.uid; | |
var status = e.parameter.status; | |
var GSCRIPT_ID = "<ENTER GSCRIPT_ID>"; | |
var urls="https://docs.google.com/spreadsheets/d/"+GSCRIPT_ID+"/edit?gid=0#gid=0"; | |
var ss=SpreadsheetApp.openByUrl(urls); | |
var ws=ss.getSheetByName("Sheet1"); | |
ws.appendRow([timestamp, uid, status]); | |
return "Done" | |
} | |
function myFunction() { | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment