###Retrieve a Site for the given Google Site #gas #googlesites
Last active
August 29, 2015 14:22
-
-
Save oshliaer/7bccede9e74bc1f8025e to your computer and use it in GitHub Desktop.
Retrieve a Site for the given Google Site #gas #googlesites
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 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