Reputation: 11
When I create a calendar event and add a Google Meet link to the calendar invitation using the Google Calendar API, each attendee has to wait for the admin to let them into the meeting. What properties should I use in my API request (using Node.js) to ensure that every invited attendee can enter the meeting without waiting for admission? -> This code part should be updated I guess
const res = await calendar.events.insert({
auth: oauth2Client,
calendarId: "primary",
resource: event,
sendNotifications: true,
conferenceDataVersion: 1
});
As [email protected], I invited [email protected] and [email protected] to a calendar event and included a Google Meet link with the invitation. I sent this invitation via the Google Calendar API. Both [email protected] and [email protected] received the invitation properly. However, when they tried to join the Google Meet through the link, they needed [email protected] to let them into the meeting.
Upvotes: 1
Views: 99