用户将数据插入Google Calendar PHP

时间:2012-10-11 15:24:54

标签: php api google-calendar-api

我的网站上有一个嵌入式日历,我希望允许用户向日历添加事件,我将如何使用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();
?>

1 个答案:

答案 0 :(得分:0)

从来没有弄清楚如何使用它,但我能够做到我想要的更多使用Zend Gdata。

http://framework.zend.com/manual/1.12/en/zend.gdata.calendar.html