Hi,
I am not sure I understand your question perfectly.  There is only Java
client library for the Google Calendar Data API and you can download it here
-

http://code.google.com/p/gdata-java-client/downloads/list

To retrieve the timezone of a calendar, this is the snippet to do that

    String calId = "default";
    URL feedUrl = new URL("http://www.google.com/calendar/feeds/"; + calId +
"/private/full");
    CalendarQuery query = new CalendarQuery(feedUrl);

    CalendarEventFeed resultFeed = calendarService.getFeed(query,
CalendarEventFeed.class);

    System.out.println("Calendar timezone: " + resultFeed.getTimeZone());

Hope that helps,
Austin

On Sat, Oct 4, 2008 at 1:11 AM, William S <[EMAIL PROTECTED]> wrote:

>
> I am trying to retrieve a user's calendar settings, specifically
> timezone, by using an admin account. And I am using JAVA library.
> Could any one tell which api is being used to do that? Thanks.
>
> >
>

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