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

通过php api将参与者添加到google日历?,php,google-calendar-api,Php,Google Calendar Api,我似乎不知道如何通过php api将参与者和来宾添加到活动中 不可能吗? 也许有解决办法吗 任何代码片段都会有很大的帮助,在没有参与者的文档中搜索相同的示例都找不到任何东西……找到了它;需要在事件上设置SendEventNotifications,如下所示: $notification = new Zend_Gdata_Calendar_Extension_SendEventNotifications(); $notification->setValue(true); $event-&

我似乎不知道如何通过php api将参与者和来宾添加到活动中

不可能吗? 也许有解决办法吗


任何代码片段都会有很大的帮助,在没有参与者的文档中搜索相同的示例都找不到任何东西……

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

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

您应该看看CalDAV和iCalendar格式。