Skip to content

Instantly share code, notes, and snippets.

@kjiwa
Created June 27, 2012 20:00
Show Gist options
  • Save kjiwa/3006473 to your computer and use it in GitHub Desktop.
Save kjiwa/3006473 to your computer and use it in GitHub Desktop.
Get a list of your sites in Optify
Site[] sites = service.getSites();
for (Site site : sites) {
System.out.println("Name: " + site.getName() + "\nToken: " + site.getSiteToken() + "\nURL: " + site.getUrl());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment