Hello
First time working with the Google calendar programatically and needed to
query a set of dates from a particular calendar. This is what was done:
EventQuery query = new EventQuery(calendar.Id.Uri.Content);
query.StartDate = startDate;
query.EndDate = startDate.AddDays(days);
EventFeed feed = svc.Query(query);
It bombs out at the last line essentially there's something wrong with the
updated-max parameter, to be precise:
The 'updated-max' parameter is not supported on this resource
Any ideas?
Thanks
--
You received this message because you are subscribed to the Google
Groups "Google Calendar Data API" 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://code.google.com/apis/calendar/community/forum.html