Ebeo / google-gdata

Automatically exported from code.google.com/p/google-gdata
0 stars 0 forks source link

Recurring events are not all returned #458

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Using the following code:

EventQuery query = new EventQuery();
query.Uri = new 
Uri(String.Format("https://www.google.com/calendar/feeds/{0}/private/full", 
email));
query.StartTime = start_time;
query.EndTime = end_time;

Normal events works fine, but when I try to query for recurring events I only 
get some of the ones that are there. E.g. create a recurring event for friday 
10-11 and let it recur every week forever. I get "about" once a month instead 
of every week as seen in the google calendar web UI.

Original issue reported on code.google.com by anders.rune.jensen on 17 Dec 2010 at 4:48

GoogleCodeExporter commented 8 years ago
Specifying query.RecurrenceStart (=start_time) and query.RecurrenceEnd 
(=end_time) does not seem to have any effect.

Original comment by anders.rune.jensen on 17 Dec 2010 at 8:01

GoogleCodeExporter commented 8 years ago
Found the bug, it was not in the google library, but rather in my own code :(

Original comment by anders.rune.jensen on 27 Dec 2010 at 11:55

GoogleCodeExporter commented 8 years ago

Original comment by ccherub...@google.com on 27 Dec 2010 at 11:59