Thanks for the reply! http://code.google.com/apis/calendar/developers_guide_js.html - there aren't demo how to load an existing calendar (.ics) using the JavaScript client. I can create calendar, using js or php api. How load exiting .ics file to just created gcalendar (not by events)?
2008/10/31 Trevor Johns <[EMAIL PROTECTED]> > > On Thu, Oct 23, 2008 at 12:51 AM, [EMAIL PROTECTED] <[EMAIL PROTECTED]> > wrote: > > > > Hi everyone, > > I have many calendars (university groups' schedules), wich I must > > import into google calendars (for each .ics file create new calendar > > with specific name and share it to the all world). How I can do it? > > I know php, java-script, can using java... Or their combination :) > > I try php and javascript api. Php api not allowed created calendar, in > > java-script samples I not found how load exist calendar.... > > Excuse for my English > > We provide a number of client libraries, including ones for PHP, > JavaScript, and Java: > > http://code.google.com/apis/calendar/developers_guide_php.html > http://code.google.com/apis/calendar/developers_guide_js.html > http://code.google.com/apis/calendar/developers_guide_java.html > > The PHP client library most definitely allows you to create calendars, > although it's not documented well. To do so, you'd execute something > like this: > > $calService = new Zend_Gdata_Calendar($client); > $newCalendar = $calService->newListEntry(); > $newCalendar->title = new Zend_Gdata_Extension_Title(); > $newCalendar->title->text = "Calendar Title Goes Here"; > $calService->insertEntry($newCalendar, > 'http://www.google.com/calendar/feeds/default/owncalendars/full'<http://www.google.com/calendar/feeds/default/owncalendars/full%27> > ); > > Also, the above link for JavaScript demonstrates how to load an > existing calendar using the JavaScript client. > > -- > Trevor Johns > > > > -- С уважением, Владимир. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
