Hi,

I wish to get the google calendar in UTC, i think using 'ctz=utc' in
uri string should serve my purpose, but it seems to return me the
calendar meetings in server time, I am using .Net Library, below is
the snippet of code I am using

        CalendarService service = CreateService(token);
        EventQuery query = new EventQuery();
        string uriString = "http://www.google.com/calendar/feeds/"; +
username + "/private/full?ctz=utc";

        query.Uri = new Uri(uriString);
        query.StartTime = lowerBounday;
        query.EndTime = upperBoundary;

        EventFeed calFeed = service.Query(query);

Please let me know what is the issue here.

--~--~---------~--~----~------------~-------~--~----~
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://groups.google.com/group/google-calendar-help-dataapi?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to