Hi, I use the .NET calendar library 2.0 and I'm having an issue on recurrent events, specially on the format of the recurrence information, sometimes Google returns the recurrence in the correct format, but sometimes returns wrong values, here is a specific example:
I have created a recurring weekly event on Google every day 3-3:30 pm until Oct 21, 2011 starting Sept 29, 2011. Google returns the event to my application with this recurrence information: DTSTART:20110929T150000Z\r\nDTEND:20110929T153000Z\r\nRRULE:FREQ=WEEKLY;INTERVAL=1;WKST=SU;BYDAY=SU,MO,TU,WE,TH,FR,SA;UNTIL=20111\r\n 021 Note the 021 at the end of the string, this number is part of the until date causing the parser of my application fail. This string should be: DTSTART:20110929T150000Z\r\nDTEND:20110929T153000Z\r\nRRULE:FREQ=WEEKLY;INTERVAL=1;WKST=SU;BYDAY=SU,MO,TU,WE,TH,FR,SA;UNTIL=20111021\r\n Which is incorrect based on RFC 2445 Please take a look on the API for the recurrence string generator. Let me know if there will be a fix for this problem. Thank you. -- 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
