2011-08-11 100 views
1

我似乎无法弄清楚如何通过php api将参与者(嘉宾)添加到事件中?通过php api添加参与者到谷歌日历?

是不是可能? 任何解决方法或许?

任何代码段将有很大的帮助,不可能通过google搜索找到任何东西(只是从那里他们没有参加的文档相同的例子......)

+1

您应该看看CalDAV和iCalendar格式。 http://code.google.com/apis/calendar/caldav/ –

回答

0

发现它;需要在事件上设置SendEventNotifications,如下所示:

$notification = new Zend_Gdata_Calendar_Extension_SendEventNotifications(); 
$notification->setValue(true); 
$event->SendEventNotifications = $notification;