|
|
Re: Recurring events: msg#00237
org.google.api.calendar
|
Subject: |
Re: Recurring events |
How are you, codewise, trying to figure out that you have a recurring event? You should be getting gd:when entries, and gd:originalEvent entries (at least that is what i am getting on my full feed with a query). Frank Mantek
On 9/27/06, brondbybc <brondbybc@xxxxxxxxx> wrote:
Frank Mantek wrote: > No, in general this should be working fine. What projection are you using? > Have you looked in the HTTP (using fiddler or any other HTTP logger) if the > events are coming down from the server?
Hi,
I'm using this url: http://www.google.com/calendar/feeds/username@xxxxxxxxx/public/full?start-min=2005-01-01&start-max=2008-01-01
Pseudo like code i'm using: CalendarService service = new CalendarService(); EventFeed calFeed = service.Query(query); if(calFeed != null && calFeed.Entries.Count > 0) foreach (EventEntry entry in
calFeed.Entries) if (entry.Times.Count > 0) foreach (When w in entry.Times)
Does this seem right?
I havent been using a http logger, I'll try that. Thanks.
Regards, bbc
> > Frank Mantek > > On 9/26/06, brondbybc <brondbybc@xxxxxxxxx> wrote: > > > > > > Hi, > > > > I'm poking around with the C# client library and having trouble getting
> > the correct calendar data. > > The code i'm using is the similar to the code in > > samples/calendar/Calendar.cs, but recurring events in my calendar > > isen't retrived. > >
> > According to this group there have been trouble with recurring events, > > is this still a problem? > > > > > > regards, > > bbc > > > > > > >
> > > > ------=_Part_22897_20900307.1159347171665 > Content-Type: text/html; charset=ISO-8859-1 > X-Google-AttachSize: 952 > > No, in general this should be working fine. What projection are you using? Have you looked in the HTTP (using fiddler or any other HTTP logger) if the events are coming down from the server?<br><br>Frank Mantek<br><br><div>
> <span class="gmail_quote">On 9/26/06, <b class="gmail_sendername">brondbybc</b> <<a href="" href="mailto:brondbybc@xxxxxxxxx">brondbybc@xxxxxxxxx">
brondbybc@xxxxxxxxx</a>> wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex
; padding-left: 1ex;"> > <br>Hi,<br><br>I'm poking around with the C# client library and having trouble getting<br>the correct calendar data.<br>The code i'm using is the similar to the code in<br>samples/calendar/Calendar.cs, but recurring events in my calendar
> <br>isen't retrived.<br><br>According to this group there have been trouble with recurring events,<br>is this still a problem?<br><br><br>regards,<br>bbc<br><br><br><br><br></blockquote></div><br>
> > ------=_Part_22897_20900307.1159347171665--
--~--~---------~--~----~------------~-------~--~----~
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 google-calendar-help-dataapi@xxxxxxxxxxxxxxxx To unsubscribe from this group, send email to google-calendar-help-dataapi-unsubscribe@xxxxxxxxxxxxxxxx For more options, visit this group at http://groups.google.com/group/google-calendar-help-dataapi -~----------~----~----~----~------~----~------~--~---
|
|