更新Google日历 - 致命错误:调用未定义的函数dateTime()

时间:2016-09-29 20:55:29

标签: php api google-calendar-api

我正在尝试使用PHP API更新Google日历。我已成功创建Google日历活动并自动获取活动的ID,但是当我尝试更新活动时,我收到此错误:

PHP致命错误:在第45行的public_html / googleapi / calendarupdate.php中调用未定义的函数dateTime()。它指的是:

$event->setStart.dateTime($startdatetime);

这是我当前的错误代码:

    <?php

header('Content-type: application/json');

require_once __DIR__ . '/google-api-php-client/src/Google/autoload.php';

$summary = $_POST["summary"];
$location = $_POST["location"];
$description = $_POST["description"];
$startdatetime = $_POST["startdatetime"];
$enddatetime = $_POST["enddatetime"];
$clientemail = $_POST["clientemail"];
$privatekey = $_POST["privatekey"];
$useremail = $_POST["useremail"];
$calendarid = $_POST["calendarid"];



$client_email = $clientemail;
$private_key = file_get_contents($privatekey);
$scopes = array('https://www.googleapis.com/auth/calendar');
$user_to_impersonate = $useremail;
$credentials = new Google_Auth_AssertionCredentials(
    $client_email,
    $scopes,
    $private_key,
    'notasecret',                                 // Default P12 password
    'http://oauth.net/grant_type/jwt/1.0/bearer', // Default grant type
    $user_to_impersonate
);
$client = new Google_Client();
$client->setAssertionCredentials($credentials);
if ($client->getAuth()->isAccessTokenExpired()) {
  $client->getAuth()->refreshTokenWithAssertion();
}

$service = new Google_Service_Calendar($client);

$event = $service->events->get($useremail, $calendarid);
$event->setSummary($summary);
$event->setLocation($location);
$event->setStart.dateTime($startdatetime);
$event->setStart.timeZone('America/Los_Angeles');
$event->setEnd.dateTime($enddatetime);
$event->setEnd.timeZone('America/Los_Angeles');
$event->setDescription($description);

$updatedEvent = $service->events->update($useremail, $event->getId(), $event);

echo json_encode($updatedEvent);

我的PHP代码基于找到here的Google API文档。

1 个答案:

答案 0 :(得分:1)

好的,我确实设法解决了这个问题。我只需改变这条线:

$event->setStart.dateTime($startdatetime);

To This:

$event->start->setDateTime($startdatetime);

我为结束日期时间做同样的事情,除非它说开始,我只是结束。只是测试它,它完美地工作。帮助我的网站可以找到here