Questions tagged [google-meet]

105 questions
1
vote
1 answer

Google Calendar API, how to add an event with attached newly generated google meet?

I'm trying to understand how I can generate and attach to a Google Calendar Event a Google Meet istance in PHP. The documentation (https://developers.google.com/calendar/create-events#conferencing) is not clear about this part, the classes and…
Peter
  • 216
  • 1
  • 14
1
vote
0 answers

I cant click/find elements in Google Meet when using Selenium

Getting to Meeting: from time import sleep chrome_options = webdriver.ChromeOptions() chrome_options.add_experimental_option("prefs", { "profile.default_content_setting_values.media_stream_mic": 1, …
MrBuushy
  • 11
  • 3
1
vote
1 answer

How to add a Google Meet link to a new Google Calendar Event using a Google Apps Script?

I'm referencing https://cloud.google.com/blog/products/application-development/hangouts-meet-now-available-in-google and https://developers.google.com/calendar/v3/reference/events, but can't seem to figure out how to add the Google Meet link to the…
0
votes
0 answers

Unable to create Google Meet Link in python with django

I'm trying to create a Google Meet event using the Google Calendar API in Python, but I'm encountering an HttpError. Here's the code I'm using to create the event: import logging import uuid from google.oauth2.service_account import Credentials as…
lmoore
  • 73
  • 1
  • 2
  • 6
0
votes
1 answer

Error: "GoogleJsonResponseException: API call to reports.activities.list failed with error: Request had insufficient authentication scopes"

this is a continuation of my previous question in which @Lorena proposed a very good solution to get Google Meets Call record data using Google Apps Script, here is the code snippet: function getMeetLogs() { const userKey = 'test@domain.xyz';//…
0
votes
0 answers

Google Event Creating without hangout meeting

I have a requirement that i need to create an Event with a videocall, the problem is that after the Event is created for some reason is not creating a HangoutLink. Here is my code: var myEvent = new Event() { …
0
votes
1 answer

Creating a Event with Google Meet link in Google calendar - Event is creating but there is error in creating meet

Hi, I am trying to create a google meet link in a google event through .net application, Token generating and event creating part works well but meet creating part shows the error, Here is required code, In Controller, if (response.StatusCode ==…
0
votes
1 answer

"Error: API call to reports.activities.list failed with error: Bad Request" when getting Google Meet data (call duration) using Google script

I am trying to get Google Meet data: Total call duration of user in the specified month Number of calls made by user in the specified month using the following code snippet: function getMeetLogs() { var currentDate = new Date(); var…
0
votes
0 answers

Google Calendar API Meet Invitations

I've been able to get the Calendar API up and running with a spring boot project using a Service Account with Domain Wide Delegation Authority. When I send an email invitation for a Google Meet, the message always goes to the Spam folder first time…
Yusuf Musa
  • 31
  • 1
  • 5
0
votes
2 answers

Puppeteer isn't clicking a button despite it being on the page

Bug expectation I expected the 'Join Now' button to be clicked on the Google Meet page after the 'Dismiss' button has been clicked. Any help would be greatly appreciated. Here is the dom node I am trying to click:
0
votes
0 answers

Google calendar video call option add co-host

I am looking to add co-host on video call option of Google Calendar --> Google Meet. I am looking to add co-host before the meeting start. Could you please suggest me how to add an attendee as a co-host. attached Image shows the option in the…
Raj Lalwani
  • 391
  • 1
  • 6
  • 14
0
votes
1 answer

How to add conferenceDataVersion in Pyhton?

I'm trying to create a Google Meet meeting using Google Calendar. After reading the documentation, I saw that there is a variable that is responsible for creating a meeting (conferenceDataVersion). But I tried to declare it in different places, but…
Maksim
  • 3
  • 1
0
votes
1 answer

How To enable the Google Meet API

I am trying to use the Google Meet API to join the meeting and capture the audio stream. I didn't find any API from Google Cloud Console.
0
votes
0 answers

To gray out the buttons in the call information page when using callkit

How can I gray out (disable) the button on the call information page? (Referring to the below pic please) I noticed It displays a blue button with enabled when using normal CallKit, as Kodeco guide. But I can't find any property or method to…
lidium
  • 53
  • 6
0
votes
0 answers

trying to connect to google meet conversation using selenium running on kubernetes running on AWS

i have a bot that you can invite to a google meet conversation by sending an email. the code for connecting to the conversation is: url = f"https://meet.google.com/{self.meeting_link}" log.info("Connecting to url: " + url) …