Google Calendar API batch request PHP
问题 i am trying to send a bunch of events via an Batch Request to Google Calendar. But i cant figur out how to do. https://developers.google.com/google-apps/calendar/batch doesnt help me. require_once 'google-api-php-client/src/Google_Client.php'; require_once 'google-api-php-client/src/contrib/Google_CalendarService.php'; $client = new Google_Client(); $client->setUseBatch(true); $batch = new Google_BatchRequest(); $uri = 'http://www.google.com/calendar/feeds/default/private/full/batch';