我的网站上有一个嵌入式日历,我希望允许用户向日历添加事件,我将如何使用PHP进行此操作?
我查看了Google API文档,但无法理解如何实现他们的示例,请参阅下文:
$calendarListEntry = new CalendarListEntry();
$calendarListEntry->setId("calendarId");
$createdCalendarListEntry = $service->calendarList->insert($calendarListEntry);
echo $createdCalendarListEntry->getSummary();
目前我的代码看起来像这样;
<?php
require_once '../google-api-php-client/src/Google_Client.php';
require_once '../google-api-php-client/src/contrib/Google_CalendarService.php';
$calendarListEntry = new CalendarListEntry();
$calendarListEntry->setId("cdnavechicleservices@gmail.com");
$createdCalendarListEntry = $service->calendarList->insert($calendarListEntry);
echo $createdCalendarListEntry->getSummary();
?>
答案 0 :(得分:0)
从来没有弄清楚如何使用它,但我能够做到我想要的更多使用Zend Gdata。
http://framework.zend.com/manual/1.12/en/zend.gdata.calendar.html