Zend Framework Google Calendar Api のマニュアルでは、更新日の指示が見つかりません。
ドキュメントには次のものがあります。
// Get the first event in the user's event list
$event = $eventFeed[0];
// Change the title to a new value
$event->title = $service->newTitle("Woof!");
// Upload the changes to the server
try {
$event->save();
} catch (Zend_Gdata_App_Exception $e) {
echo "Error: " . $e->getMessage();
}
しかし、どのようにイベントの startDate と endDate を更新できますか?..