Try the http://www.google.com/calendar/feeds/default/allcalendars/full feed with HTTP GET request (or use one of the client libraries). You have to authenticate somehow (ClientLogin, AuthSub)
Here is the protocol: http://code.google.com/intl/hu-HU/apis/calendar/docs/2.0/developers_guide_protocol.html#RetrievingAllCalendars And if you want to use PHP, here is the way, how to do that: http://code.google.com/intl/hu-HU/apis/calendar/docs/1.0/developers_guide_php.html#RetrievingCalendars To access one calendar, you should use the "id" (XML Path: / default:feed/default:entry/default:id), something like that: http://www.google.com/calendar/feeds/default/allcalendars/full/user%40gmail.com Over this feed you can get the XML format of the calendar. If you need in ICS format, use the feed: https://www.google.com/calendar/ical/user%40gmail.com/private/full.ics Only you have to do changing the 'user%40gmail.com' parts for your email address or the address of the group calendar (for example: rf1c66uld6dgk2t5lh43svev6g%40group.calendar.google.com). On Aug 10, 5:43 pm, boderg <[email protected]> wrote: > Hi! > > Can anybody tell me, how can i get private link to my calendar by > GData API? > > 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 -~----------~----~----~----~------~----~------~--~---
