I'm wondering is it possible to get list of SpreadSheets from Google Docs in Java?
URL SPREADSHEET_FEED_URL = new
> URL("https://spreadsheets.google.com/feeds/spreadsheets/private/full");
> SpreadsheetFeed feed = service.getFeed(SPREADSHEET_FEED_URL,
> SpreadsheetFeed.class);
> List<SpreadsheetEntry> spreadsheetEntries = feed.getEntries();
this code gets list of all spreadsheets on an account, but I need files
from specific location (collection created in Google docs)
Thanks for your help.
