Hello
I'm hoping this will be relatively easy to someone who is familiar with the Google Calendar API, have done some searching but the API isn't giving me the answer!
Imagine that a Google Account has 3 calendars, all created by that user.
I'm trying to get events from a SPECIFIC calendar of that user, using the .NET Google API, as follows:
Calendar.userName = CalendarUserName;
Calendar.userPassword = CalendarPassword;
Calendar.feedUri = "https://www.google.com/calendar/feeds/default/private/full";
What that gives me is the feed of ALL events from ALL calendars, which is all very well, but then I need to parse them (presumably there is a way to identify but I don't know that either).
What would be ideal is for me to be able to cherry-pick and ask for a particular calendar, and only get the events from that one.
Is that possible? Is it only possible using the magic-cookie request?
Thanks Duncan