我正在使用带有 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