我正在使用laravel包进行谷歌日历API集成。在那,我只能与参加者一起创建活动。我试过创建组织者,但它没有出现。以下是我用过的代码。此处的组织者名称默认为创建API凭据的电子邮件,电子邮件通知也未来。
我正在使用的包是"spatie/laravel-google-calendar"
。
谁能告诉我这里我做错了什么?
Event::create([
'name' => 'Latest Event dsfdsfsdfsdf',
'location' => '800 Howard St., San Francisco, CA 94103',
'description' => 'A chance to hear more about Google\'s developer products.',
'startDateTime' => Carbon\Carbon::now(),
'endDateTime' => Carbon\Carbon::now()->addHour(),
'sendNotifications' => true,
'sendUpdates' => 'all',
'organizer' => array('email' => '[email protected]','displayName' => 'Darshan')
'attendees' => array(
array('email' => '[email protected]','displayName' => 'Darshan', 'organizer' => true),
array('email' => '[email protected]','displayName' => 'Ryan')
)
]);
该软件包尚不支持添加组织者。您可以将功能添加到包中,也可以直接使用Google ApiClient。谷歌Sdk确实有一个setOrganizer
方法,它应该类似于在setAttendees
中调用的Event class方法。
显然,“组织者”这个词有点用词不当,它实际上指的是创建事件的日历。看看这个question及其评论。