Yea the max events is six because we are running the calendar events through entity recognition software. We only want future events. I was under the impression that each event had exactly one entry in the database. I'm trying to get all future events ordered by which ones come first. Should I be forming the query differently?
Madhav On Mon, Oct 24, 2011 at 12:34 PM, Alain Vongsouvanh <[email protected]>wrote: > Hello Madhav, > > Is there a reason why you are setting max_results to 6? The event might be > returned in another page. > Also, futureevents makes the API only returns events that are taking place > in the future. If the event you updated is passed, it will not be returned > by the API. > > Best, > Alain > > > On Sun, Oct 23, 2011 at 6:51 PM, Madhav Suresh <[email protected]> wrote: > >> Yea the changes are persisted online, but for some reason I'm not getting >> the updated events. Am I forming my query wrong? I pass it this: >> >> query = gdata.calendar.client.CalendarEventQuery() >>> query.orderby = 'starttime' >>> query.sortorder = 'a' >>> query.futureevents = 'true' >>> query.max_results = 6 >>> query.ctz = 'America/Chicago' >>> feed = client.GetCalendarEventFeed(q=query) >> >> >> -- >> 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 >> > > > > -- > Alain Vongsouvanh | Developer Programs Engineer > > -- > 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 > -- 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
