0
我有一些PHP代碼像這樣的日期:谷歌API PHP客戶端和服務帳戶:事件失蹤
$service = new Google_Service_Calendar($client);
$calendarId = 'your calendar id';
$optParams = array(
'timeMin' => date('c'),
'maxResults' => 100,
'singleEvents' => TRUE,
);
$results = $service->events->listEvents($calendarId, $optParams);
$events = $results->getItems();
// in order to use it in javascript
echo json_encode($events);
$事件是預期的數組,但不包含每個事件的日期。在我使用服務帳戶之前,我做了一些測試,每個日期都可以通過屬性「開始」訪問,但不在我現在得到的列表中。任何想法,因爲沒有適當的文件,我應該得到什麼迴應?順便說一句。在日曆設置中更改服務帳戶的共享權限不會有幫助。