I had the same issues. At the end I used back API v3

Sad, I spend few days to understand API v4, end up go back API v3

This is the sample :

listFeedUrl = worksheet.getListFeedUrl();

ListQuery query = new ListQuery(listFeedUrl);

query.setSpreadsheetQuery("( email = \"[email protected]\" or code = \"test\" ) 
and area = \"Europe\"");

ListFeed feed2 = service.query(query, ListFeed.class);

         System.out.println("feed2.getEntries().size()=" + 
feed2.getEntries().size());
         

-- 
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/d/optout.

Reply via email to