Two questions:
How do you get events from a specific Calendar? The following link gets events for your primary calendar: http://www.google.com/calendar/feeds/user@gmail.com/private/full .
And how do you get a contact’s birth date from the list of ContactEntry objects that is returned to you when using the ContactsService?
Thanks in advance!
I should probably provide some of my findings in-case somebody else wants to know this. As far as getting the dates from public calendars are concerned, the CalendarEntry class contains a generic list of AtomLink objects. The very first one’s AbsoluteUri property will provide you with the EventEntry objects for that calendar. Here is some sample code:
I still don’t know how to get the Contact’s birth date :/ I’ll have a look at that when I have more time.