通过php api将参与者添加到谷歌日历?

时间:2011-08-11 21:40:29

标签: php google-calendar-api

我似乎无法弄清楚如何通过php api将参与者(嘉宾)添加到活动中?

不是吗? 也许任何解决方法?

任何代码片段都会有很大帮助,无法通过Google搜索找到任何内容(只是文档中没有参与者的相同示例......)

1 个答案:

答案 0 :(得分:0)

找到了;需要在事件上设置SendEventNotifications,如下所示:

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