Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Google Hangouts Meet API Documentation [closed]

I'm looking for original api documentation for Google Hangouts Meet. I noticed that one the bots hangups https://github.com/tdryer/hangups uses these urls:

https://clients6.google.com/chat/v1/#{endpoint}
https://clients6.google.com/chat/v1/conversations/sendchatmessage
https://clients6.google.com/chat/v1/conversations/removeuser
https://clients6.google.com/chat/v1/conversations/createconversation

But I can't find any references.

like image 643
max_dev Avatar asked Jul 22 '17 11:07

max_dev


People also ask

Is there any API for Google Meet?

The API calculates meeting duration as the sum of all the intervals with an overlap of two or more calls. The diagram below illustrates how the meeting duration is calculated.

Can you show documents on Google Meet?

You can present directly from a file in Google Docs, Sheets, Slides, or Jamboard to a Google Meet video meeting your camera feed in the side panel of your file. Join a Google Meet video meeting. Open a file in Docs, Sheets, Slides, or Jamboard. At the top, click Meet .

Did Google Meet replace hangouts?

Hangouts (sometimes referred to as classic Hangouts), has evolved into 2 premium products: Google Chat for messaging. Google Meet for video and audio meetings.

Why Google Meet is cut off?

If you're the only participant in a meeting, after 10 minutes of inactivity, you get a notification to end or stay in the meeting. If you don't respond within 2 minutes, the meeting automatically ends. If you don't want your meetings to automatically end, go to Settings and turn off this feature.


1 Answers

the very repo you pointed to has an explanation of where they got it from:

Unlike its predecessor Google Talk, Hangouts uses a proprietary, non-interoperable protocol. hangups is implemented by reverse-engineering this protocol, which allows it to support features like group messaging that aren't available in clients that connect via XMPP.

basically, the author of that library just reversed those REST api calls. Presumably by using the actual google hangouts, and then looking at what network calls it makes.

I do not believe that google has any documentation on this.

like image 111
Chii Avatar answered Oct 20 '22 04:10

Chii