Is it possible to include parameters in a URL referencing a shared Google Sheet?
A typical URL will look like this: https://docs.google.com/spreadsheets/d/1c-sxi4cwZXUXTHJSU-Nzl1lAwPCs123l46UKQgABCp0/edit#gid=1455048586
What I'm trying to do is include a parameter, something like: https://docs.google.com/spreadsheets/d/1c-sxi4cwZXUXTHJSU-Nzl1lAwPCs123l46UKQgABCp0/edit#gid=1455048586?msg=Hello
I then would hope to retrieve the value of msg with the doGet(e) function which includes the following line, just to prove it works.
SpreadsheetApp.getUi().alert(e.parameter.msg);
If the following solution is the best alternative, I'll change course: Google spreadsheet reading parameters from its own URL