1

我正在尝试了解如何在 PHP 中生成 Google 日历事件并将其附加到 Google Meet istance。

文档(https://developers.google.com/calendar/create-events#conferencing)对此部分并不清楚,PHP 的类和方法都有记录(https://developers.google.com/resources/api -libraries/documentation/calendar/v3/php/latest/class-Google_Service_Calendar_CreateConferenceRequest.html)所以它们存在。在文档中有一个 javacript 示例,但我不知道如何将其转换为 php 代码。

我做了一些谷歌搜索,但以前似乎没有其他人有这种必要性。

更新:我想我找到了问题所在。javascript 文档报告说需要 setDocumentDataVersion(1) 才能处理会议。

这里有一个关于它的使用的简短文档:

API客户端支持的会议数据版本号。版本 0 假定不支持会议数据并忽略事件正文中的会议数据。版本 1 支持复制会议数据以及使用会议数据的 createRequest 字段创建新会议。默认值为 0。

PHP API 中似乎不存在此方法,因此我无法将其设置为 1。这可能是我的代码无法将 google meet 附加到我的活动的原因。

这是我的测试代码。到这里它工作正常,它在我的日历中创建了一个事件。

# Booking
$calendarId = 'test@group.calendar.google.com'; #
$event = new Google_Service_Calendar_Event();

$event->setSummary('Test');
$event->setDescription('Test Test');
$start = new Google_Service_Calendar_EventDateTime();
$start->setDateTime('2020-11-30T19:00:00+01:00');
$event->setStart($start);
$end = new Google_Service_Calendar_EventDateTime();
$end->setDateTime('2020-11-30T19:20:00+01:00');
$event->setEnd($end);
$attendee1 = new Google_Service_Calendar_EventAttendee();
$attendee1->setEmail('mytestemail@testtest.com');
// ...
$attendees = array($attendee1,
                   // ...
                  );
$event->attendees = $attendees;

#Try to create a Google Meet and attach it to event
$solution_key = new Google_Service_Calendar_ConferenceSolutionKey();
$solution_key->setType("hangoutsMeet");
$confrequest = new Google_Service_Calendar_CreateConferenceRequest();
$confrequest->setRequestId("3whatisup3");
$confrequest->setConferenceSolutionKey($solution_key);
$confdata = new Google_Service_Calendar_ConferenceData();
$confdata->setCreateRequest($confrequest);
$event->setConferenceData($confdata);


$createdEvent = $service->events->insert($calendarId, $event);

有什么建议么?

4

1 回答 1

3

我相信你的目标和情况如下。

  • 您想使用 googleapis for php 通过 Google Meet 创建新活动。
  • 您已经能够使用 Calendar API 创建新事件。

为了将 Google Meet 添加到您的脚本,conferenceDataVersion已设置。在这种情况下,插入方法似乎是insert( string $calendarId, Google_Service_Calendar_Event $postBody, array $optParams = array() ). 因此,请按如下方式修改您的脚本。

从:

$createdEvent = $service->events->insert($calendarId, $event);

至:

$createdEvent = $service->events->insert($calendarId, $event, array('conferenceDataVersion' => 1));

参考:

于 2020-11-30T23:31:16.207 回答