Skip to content

Instantly share code, notes, and snippets.

@oshliaer
Last active August 29, 2015 14:22
Show Gist options
  • Save oshliaer/7bccede9e74bc1f8025e to your computer and use it in GitHub Desktop.
Save oshliaer/7bccede9e74bc1f8025e to your computer and use it in GitHub Desktop.
Retrieve a Site for the given Google Site #gas #googlesites
function getSiteByURL(){
var ms = SitesApp.getSiteByUrl('https://sites.google.com/site/{NAME_OF_SITE}/');
return ms;
}
function getSiteByDOMAIN(){
var ms = SitesApp.getSite('', '{NAME_OF_SITE}');
return ms;
}
function getSiteByNAME(){
var ms = SitesApp.getSite('{NAME_OF_SITE}');
return ms;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment