We have an application that imports our application’s events into GCal and we recently attempted to add a google meet to that event to that same event.
conferenceDataVersion is set to 1, as specified in the documentation.
The response we get is a successful one and the event is created, the status of the conference is pending
, however the google meet is never added to the event.
Any ideas?
Here is the code adding the conferenceRequest:
$conferenceRequest = new CreateConferenceRequest();
$conferenceRequest->setRequestId(Str::random(10));
$solutionKey = new ConferenceSolutionKey();
$solutionKey->setType('hangoutsMeet');
$conferenceRequest->setConferenceSolutionKey($solutionKey);
$conferenceData = new ConferenceData([
'createRequest' => $conferenceRequest,
]);
$GoogleServiceCalendarEvent->setConferenceData($conferenceData);
3