CalendarListEntry未显示Google PHP API

时间:2016-12-02 17:29:14

标签: php google-api google-calendar-api google-api-client

我正在尝试使用此代码示例添加一个条目:

<?php

$service = new \Google_Service_Calendar($client);
$calendarListEntry = new \Google_Service_Calendar_CalendarListEntry();
$calendarListEntry->setId($calendarId);
$calendarListEntry->setHidden(false);
$calendarListEntry->setSelected(true);
$calendarListEntry = $service->calendarList->insert($calendarListEntry);

日历已插入但未在Gmail Android应用中显示。我必须去设置才能显示它。

我想到setHidden()setSelected()它会起作用,但它没有改变任何东西。另外,在插入$calendarListEntry后返回hidden = null

有什么想法吗?

0 个答案:

没有答案