2011-08-11 32 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;