我目前正在使用Google-Calendar-API,并试图在我的Google日历中插入一个新的“外出”事件。
我正在使用以下代码插入事件:
$client = getClient();
$service = new Google_Service_Calendar($client);
$calendarId = 'primary';
$event = new Google_Service_Calendar_Event([
'summary' => 'Summery Tets',
'description' => 'DescriptionTest',
'start' => ['dateTime' => '2019-01-14T09:00:00-07:00'],
'end' => ['dateTime' => '2019-01-14T10:00:00-07:00'],
'reminders' => ['useDefault' => false],
'transparency' => 'opaque',
]);
$results = $service->events->insert($calendarId, $event);
,它插入一个事件-没问题,但我希望它成为“不在办公室”的事件。我一直在阅读日历API DOC,但是找不到有关外出“功能”的任何信息