Questions tagged [google-meet]

105 questions
2
votes
1 answer

I am not able to add google meet to a calendar event api using nodejs

I am using google APIs to create an event and add a google meet link to that event. Calendar event creation is working fine but I am not able to add a google meet link const response = await calendar.events.patch({ auth: auth, calendarId:…
2
votes
0 answers

How do I fix google meet screen sharing being very dark on Ubuntu 22.04.1

Issue: When I go to share my screen/tab/window on google meet, it comes up very dark. very dark screenshot of shared screen. Any ideas how to fix this? Actions taken: all of the following with multiple logins/out/restarts but to no avail You might…
2
votes
2 answers

Unable to launch google meet via link through flutter application

I am trying to build an application where users can join google meet just with one click(I know it is easier to send a meet link via Whatsapp but I want everything in one place). I have used the url_launcher package since google meet generates a URL…
2
votes
2 answers

Do Google Calendar events have option to redirect participant to external URL as meeting is ended?

Does google calendar events have option to redirect participant to external URL as meeting is ended? Zoom has a "post-attendee URL" with this functionality. We are looking to redirect our Google Meet participants to a feedback page on our…
2
votes
3 answers

How to Cancel/Delete a scheduled Calendly event (linked with google meet), which should also be removed from google calendar?

I tried looking at the developer docs. One specific API which caught my eye: https://developer.calendly.com/api-docs/b3A6Mzc3OTc1OTc-delete-invitee-no-show This marks the invitee as "no show" and it doesn't free up the calendar of the organizer.
2
votes
2 answers

Google Meet Conference setup through Google Calendar API - Java/Kotlin

I have integrated Google Calendar API and able to create meetings properly. Since google also allows for creation of Google Meet conferences through Google Calendar API - I have been trying to access the ConferenceData object throught the event…
2
votes
0 answers

Following https://meet.google.com/new redirects with cURL

Google Meet currently doesn't have an API to get a meeting link programmatically, unfortunately. The only way as of today is to use the Calendar API which requires oAuth. That being said we can use the /new endpoint to directly start a meeting…
debdutdeb
  • 133
  • 7
2
votes
0 answers

Detect audio on Google Meet with Chrome Extension/Javascript

I'm working on a Google Chrome extensions that automatically mutes the microphone when somebody else is talking, to prevent speaking over each other. I've started by looking at the Chrome tabs API and I can successfully detect a sound played on a…
Aurasphere
  • 3,841
  • 12
  • 44
  • 71
2
votes
0 answers

Google Meet integration api (like Hangouts app for Slack)

I want to utilise Google Meet api, which is used in Hangouts integration for Slack, description follows TL;DR: Links such as https://meet.google.com/new?gid=123&gd=qwe987 can be generated, so a modal is shown which can ask user's confirmation and…
2
votes
1 answer

Get Google Meet attendee Status

I am trying to find the status of google meet conference participants. I want to know who connects, who leaves the meeting, all in realtime. Is this possible? I went through the API documentation but I am not seeing how this can be…
Billy Billy
  • 423
  • 4
  • 14
2
votes
3 answers

Google Stopped creating Google Meet link while creating event using Google Calendar API

From today Google has stopped creating Google meet Url while creating an Event. Event is created, however meet url is not created. This code was working since last 3 month. ConferenceData conferenceData = new ConferenceData(); …
DP Dev
  • 201
  • 1
  • 2
  • 9
1
vote
0 answers

How do create a meeting bot for google meets that records meeting?

Hey everyone I am trying to create a meeting bot for Google meet. I am building this as a part of a product I am creating. I am wondering how meeting bots are entering meetings, recording them, and then storing them for the user to use. What is…
Scrubster
  • 32
  • 9
1
vote
0 answers

Cannot Create hangout event in Google Calendar API using Service Account

I have configured a service account and successfully created an event using the Google Calendar API. However, I am facing an issue where the Google Meet link (the conference) is not being generated along with the event ( can see the event in the…
1
vote
0 answers

How to implement real-time transcription along with speaker Identification for google meet

I'm working on developing a tool that can automatically join a Google Meet session, record the audio, and generate real-time notes that are aware of who is speaking. The tool should be able to identify speakers and accurately associate their spoken…
1
vote
0 answers

Capture google meet transcript

Can we capture live captions or transcripts without affecting other element sizes/position from a google meet meeting? I tried using a MutationObserver on the captions block node, but the caveat is that when my extension triggers the captions, it…