如何在不同的日历之间切换?
How to switch between different calendars?
我的 google 日历帐户中有一堆日历。我想出了如何在其中一个日历下添加一个事件,但是当你已经创建了事件时,有没有办法通过 update() 切换到另一个日历?
谢谢
尝试使用:
Moves an event to another calendar, i.e. changes an event's organizer.
这是 move()
的示例代码:
$result = $service->events->move('primary', 'eventId', 'destinationCalendarId');
// Print the updated date.
echo $result->getUpdated();
我的 google 日历帐户中有一堆日历。我想出了如何在其中一个日历下添加一个事件,但是当你已经创建了事件时,有没有办法通过 update() 切换到另一个日历? 谢谢
尝试使用:
Moves an event to another calendar, i.e. changes an event's organizer.
这是 move()
的示例代码:
$result = $service->events->move('primary', 'eventId', 'destinationCalendarId');
// Print the updated date.
echo $result->getUpdated();