Hi, I'm having issues retrieving free/busy shared calendar events, here is a 
piece of the code:
            string originalUri = "https://www.google.com/calendar/feeds/"; + 
calendarId + "/private/full";
            EventQuery myQuery = new EventQuery(originalUri);
            if(isOAuth)
            {
                myQuery.OAuthRequestorId = appSession.UserName;
            }
            myQuery.StartTime = startDate;
            myQuery.EndTime = endDate;

            EventFeed myResultsFeed = null;
            try
            {                
                myResultsFeed = service.Query(myQuery) as EventFeed;
            }
....
This code works fine with all permissions except Free/Busy, it returns me a 
401 (forbidden) exception. Any ideas how can I fix this problem?

Thanks in advance.

-- 
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

Reply via email to