Replies: 3 comments 4 replies
-
|
Hi, same for me! Any solution ? |
Beta Was this translation helpful? Give feedback.
2 replies
-
|
Hi, I am also getting this issue, and I think there are different types for creating meetings for service account like: eventHangout and eventNamedHangout... |
Beta Was this translation helpful? Give feedback.
2 replies
-
|
I fixed the issue by putting GOOGLE_CALENDAR_IMPERSONATE in env. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

Uh oh!
There was an error while loading. Please reload this page.
-
this is code
$event = new Event;
$event->name = 'A new event';
$event->description = 'Event description';
$event->startDateTime = Carbon::now();
$event->endDateTime = Carbon::now()->addHour();
$event->addMeetLink(); // optionally add a google meet link to the event
$event->save();
But have error
Google\Service\Exception
{ "error": { "errors": [ { "domain": "global", "reason": "invalid", "message": "Invalid conference type value." } ], "code": 400, "message": "Invalid conference type value." } }
Beta Was this translation helpful? Give feedback.
All reactions