I am trying to delete all calendar entries from today onwards. I run the request and call getEntries () as a result of the request. getEntries () always returns 25 entries (or less if the calendar has less than 25 entries). Why aren't all records returned? I expect about 80 entries.
As a test, I tried to execute the query by deleting the 25 returned records, again executing the query, deleting again, etc. It works, but there should be a better way.
The following is Java code that runs a query only once.
CalendarQuery myQuery = new CalendarQuery(feedUrl); DateFormat dfGoogle = new SimpleDateFormat("yyyy-MM-dd'T00:00:00'"); Date dt = Calendar.getInstance().getTime(); myQuery.setMinimumStartTime(DateTime.parseDateTime(dfGoogle.format(dt)));
PS: I looked at the Javadoc Data API and Google Data API Developers Guide . These sites are fine, but not very good. Does anyone know any additional google API documentation?
source share