On Fri, Dec 5, 2008 at 9:17 AM, [email protected] <[email protected]> wrote: > > Hi! > > I'm a young java user, and I need some help to finish a project. > I just would like to creat an event in a calendar that a creat with a > createCalendar() function. > The calendar is perfectly created, but I don't know how to add an > event in this new calendar. > > I'm able to creat an event in the main calendar of my account with > this code : > > ... > > So I don't know if the probleme is about the eventFeedUrl, because > it's refering to the main calendar [email protected]. But how to > refered it with the new calendar? > I didn't find any solution in the the Help of the Calendar API exept > create an event always in the main calendar. > > Thank you!! :)
When you create the calendar, you'll receive a calendar entry back. Inside of that, there will be a <link rel="alternate" href="..."> element that will contain the new calendar's feed URL. You can then use that when you create new event entries. -- 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 -~----------~----~----~----~------~----~------~--~---
