On http://calendar.google.com, if the QuickAdd text doesnt make sense,
google forwards you to manually add it.
I would like to do a similar thing using the API. Here is my code so
far:
$gdataCal = new Zend_Gdata_Calendar($client);
$event = $gdataCal->newEventEntry();
$event->content = $gdataCal->newContent($quickAddText);
$event->quickAdd = $gdataCal->newQuickAdd('true');
$newEvent = $gdataCal->insertEvent($event,'http://www.google.com/
calendar/feeds/[calendarID]/private/full');
This works ok but i need to detect whether the event was successfully
added or if the text doesnt make sense to the API parser.
I couldnt find an answer when i googled this issue so im posting
here :)
Any help would be greatly appriciated!
RoB
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---