0

I am using Google Calendars in my app, and I parse the feed. However, I am noticing that on recurring events, it never seems to put in individual dates anywhere. In the feed, all I see is the date that it first started, but never any specific dates. Is there a way around this? Basically, an event is set up for every Sunday morning, but I need the specific dates for that, and the feed doesn't contain any of it.

The feed in question is:

https://www.google.com/calendar/feeds/mehyouth%40gmail.com/public/basic?futureevents=true

user717452
  • 33
  • 14
  • 73
  • 149

1 Answers1

0

GData API generating the feeds is deprecated, please switch to API v3. In v3, when you want to get the individual instances of a recurring event, you can use the Events.instances() call or set singleEvents=true on the Events.list() call.

luc
  • 3,642
  • 1
  • 18
  • 21