Replies: 2 comments 2 replies
-
Hi, same for me! Any solution ? |
Beta Was this translation helpful? Give feedback.
0 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
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