Hello
I am doing something wrong or it a bug.
PLEASE review my code and help.
// a9hnd is rowId getting as a full url from previous query
// SpreadsheetEntry entry = spreadsheets.get(i);
// rowIdString = entry.getId();
URL listFeedUrl= new URL("http://spreadsheets.google.com/feeds/list/
myspreadsheetkey/1/private/values/a9hnd");
ListQuery query = new ListQuery(listFeedUrl);
ListFeed feed=null;;
try {
feed = service.query(query, ListFeed.class);
//I am getting Tottal result -1 and 0 Entries for size()
System.out.println("getTotalResults"+feed.getTotalResults
());
// no exceptions just empty feed
} catch (ServiceException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
return feed;
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google Docs Data APIs" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/Google-Docs-Data-APIs?hl=en
-~----------~----~----~----~------~----~------~--~---