我正在使用 Google Calendar API 在我的客户 Google 日历中插入事件。我想在他们日历的时区中插入事件,但目前我只能通过 Google Calendar API 使用一个时区。
如何使用 Google Calendar API 获取特定 Google Calendar 的时区?
到目前为止,我正在使用以下代码将事件添加到 Google 日历:
$eventName='You have ListingAppointments.com Appointment';
$Address='testing-456';
$Ausers='test48@gmail.com';
if ($client->getAccessToken()) {
$_SESSION['token'] = $client->getAccessToken();
//print_r($events);
$event = new Google_Event();
$event->setSummary($eventName);
$event->setLocation('testing234');
$start = new Google_EventDateTime();
$start->setDateTime('2013-07-19T10:25:00.000-07:00');
//print_r($start);
$event->setStart($start);
$end = new Google_EventDateTime('2013-07-19T10:25:00.000-07:00');
$end->setDateTime($end);
//print_r($end);
$event->setEnd($end);
$attendee1 = new Google_EventAttendee();
$attendee1->setEmail($Ausers);
$attendees = array($attendee1);
$event->attendees = $attendees;
$createdEvent = $cal->events->insert('primary', $event);
print_r($createdEvent);
}