Я нашел простой класс PHP для API Календаря Google (v2.6).
https://github.com/montania/Google-Calendar-API-PHP-Class
И есть функция updateEvent ($ handle, $ id, $ etag, $ json) {...}
/**
* Method to update an event in the calendar.
If $etag is submitted it won't update your event if it has been updated since
you last retreived it
* @param string $handle E-mail or handle to identify the calendar
* @param string $id The id of the event
* @param string $etag The e-tag of the event (optional)
* @param string $json The complete json code from the event that you've
retrieved with the changes that you want
* @return bool|object Returns false on failure and object on success
*/
Что я должен указать в параметре $ json ?Может кто-нибудь привести пример кода?
Спасибо.