Hello, I encounter a problem that I cannot list spreadsheets in my "Shared
with me" folder. I basically use the following typical snippet in Android
to list all my spreadsheets. However, I find that none of the sheets in the
"Shared with me" folder is listed. Any ideas?
Thanks!
SpreadsheetService service = new
SpreadsheetService("MySpreadsheetIntegration-v1");
service.setAuthSubToken(credential.getToken());
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> spreadsheets = feed.getEntries();
for (SpreadsheetEntry spreadsheet : spreadsheets) {
System.out.println(spreadsheet.getTitle().getPlainText());
}
--
You received this message because you are subscribed to the Google Groups
"Google Spreadsheets API" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.