drupal 7 で GCal API を使用していますが、イベントを作成しようとして立ち往生しています。未定義関数の呼び出しエラーが発生しました。しかし、私の議論には何か問題があるのではないかと思います。コードは次のとおりです。
$event =array(
'Summary'=> 'random',
'Start'=> '2013-12-12 12:00:00',
'End'=> '2013-12-12 13:00:00',
'TimeZone'=> 'America/Los_Angeles',
);
$calendar_id='CALENDAR_ID'; //this was found off of the calendar settings page
$account_name=gauth_account_load('test_account');
$success=gcal_create_event($event, $calendar_id, $account_name);
カレンダーが公開されていることは確認済みです。ドキュメントはこちら: http://drupal.org/project/gcal