Solicitação em lote da API do Google Agenda em PHP

Estou tentando enviar vários eventos por meio de uma solicitação em lote para o Google Agenda. Mas eu não consigo descobrir como fazer.https://developers.google.com/google-apps/calendar/batch não me ajuda.

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';
$batchContent = file_get_contents('xxxxx/google-api-php-client/batch.xml');    

$batch->add($batchContent);

batch.xml contém 2 itens. Isso é tudo tão longe. Mas nada aconteceu.

Eu também tentei

$batch->execute() 

Mas isso lança erro sem mensagem.

Minha pergunta: Como enviar um lote via PHP para o Google Agenda?

questionAnswers(1)

yourAnswerToTheQuestion