バッチ リクエストを介して Google カレンダーに一連のイベントを送信しようとしています。しかし、私はどうすればよいかわかりません。https://developers.google.com/google-apps/calendar/batchは役に立ちません。
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 には 2 つの項目が含まれています。ここまでです。しかし、何も起こりませんでした。
私も試してみました
$batch->execute()
しかし、それはメッセージなしでエラーをスローします。
私の質問: PHP 経由でバッチを Google カレンダーに送信する方法は?