How can I get url parameters from a google sites page -
For a Google site, I want to display content based on a page url parameter.
Example.
Then I want to make an HTTP request using ID and want to display results on the page.
Or I want to use an app script to do something and display results on the page.
How can I do this?
Use on Google Apps Script function doGet (e) {// ID example in your ur: http://sites.google.com/../mypage?myidok=123 var element - e.parameters.myidok // code // your app}
Comments
Post a Comment