public class GDocParser {
public static String onSupport2() throws AuthenticationException, MalformedURLException, IOException,
ServiceException, URISyntaxException {
SpreadsheetService service = new SpreadsheetService("MySpreadsheetIntegration-foo");
URL url = new URL("https://spreadsheets.google.com/feeds/spreadsheets/private/full?title=GSS-Dev-Schedule");
SpreadsheetFeed feed = service.getFeed(url, SpreadsheetFeed.class);
List<SpreadsheetEntry> spreadsheets = feed.getEntries();
SpreadsheetEntry spreadsheet = spreadsheets.get(0);
WorksheetFeed worksheetFeed = service.getFeed(spreadsheet.getWorksheetFeedUrl(), WorksheetFeed.class);
List<WorksheetEntry> worksheets = worksheetFeed.getEntries();
WorksheetEntry worksheet = worksheets.get(0);
// fetch A1 only