谷歌日历api没有显示组织者名称和发送通知电子邮件 - laravel

问题描述 投票:3回答:1

我正在使用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')
              )
            ]); 
laravel google-api google-calendar-api laravel-5.1 spatie
1个回答
1
投票

该软件包尚不支持添加组织者。您可以将功能添加到包中,也可以直接使用Google ApiClient。谷歌Sdk确实有一个setOrganizer方法,它应该类似于在setAttendees中调用的Event class方法。

显然,“组织者”这个词有点用词不当,它实际上指的是创建事件的日历。看看这个question及其评论。

© www.soinside.com 2019 - 2024. All rights reserved.