创建谷歌日历活动

时间:2012-10-31 06:44:20

标签: php google-calendar-api

我正在尝试使用下面给出的以下代码创建Google日历活动,但我找不到类事件。如何创建新事件。请帮忙

<?php
         require_once '../../src/Google_Client.php';
         require_once '../../src/contrib/Google_CalendarService.php';
         session_start();

         $client = new Google_Client();
         $client->setApplicationName("Google Calendar PHP Starter Application");

         $client->setClientId('');
         $client->setClientSecret('');
         $client->setRedirectUri('simple.php');
         $client->setDeveloperKey('insert_your_developer_key');
         $cal = new Google_CalendarService($client);
         if (isset($_GET['logout'])) {
           unset($_SESSION['token']);
         }

         if (isset($_GET['code'])) {
            $client->authenticate($_GET['code']);
            $_SESSION['token'] = $client->getAccessToken();
            header('Location: http://' . $_SERVER['HTTP_HOST'] . $_SERVER['PHP_SELF']);
        }

        if (isset($_SESSION['token'])) {
           $client->setAccessToken($_SESSION['token']);
        }

        $authUrl = $client->createAuthUrl();
if (!$client->getAccessToken()) {
  

这里正在创建新事件

          $event = new Event();
          $event->setSummary("test title");
          $event->setLocation("test location");
          $start = new EventDateTime();
          $start->setDateTime('04-03-2012 09:25:00:000 -05:00');
          $event->setStart($start);
          $end = new EventDateTime();
          $end->setDateTime('04-03-2012 10:25:00:000 -05:00');

          $createdEvent = $cal->events->insert('primary', $event);

          echo $createdEvent->getId();
}

2 个答案:

答案 0 :(得分:11)

我遇到了完全相同的问题。他们的文件很不完整。类名在他们的例子中是错误的。这是我开始工作的代码:

$event = new Google_Event();
$event->setSummary('Halloween');
$event->setLocation('The Neighbourhood');
$start = new Google_EventDateTime();
$start->setDateTime('2012-10-31T10:00:00.000-05:00');
$event->setStart($start);
$end = new Google_EventDateTime();
$end->setDateTime('2012-10-31T10:25:00.000-05:00');
$event->setEnd($end);
$createdEvent = $cal->events->insert('[calendar id]', $event); //Returns array not an object

echo $createdEvent->id;

$cal->events->insert返回一个数组,而不是像示例代码中那样的对象。如果您希望它返回一个对象,您需要在Google_Client调用中定义它,如下所示:

$client = new Google_Client(array('use_objects' => true));

答案 1 :(得分:1)

我也遇到了这个问题,似乎Google的API再次发生了变化。

使用我正在尝试的文档中的代码示例

$calendar = new Calendar();

这导致找不到类Calendar的错误。事实证明所有内容都已重命名,我必须执行以下操作:

$calendar = new Google_Service_Calendar_Calendar();

似乎是一个可以避免冲突的ok命名约定,但是更新文档会很不错。因此,为了解决OP的问题,他现在可以使用以下方法解决他的问题:

$event = new Google_Service_Calendar_Event();

您可以查看文件Google / Service / Calendar.php,您应该会看到使用此命名约定命名的所有相关类。