java Google Hangouts Meet API 文档

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/45253763/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-11-03 08:36:17  来源:igfitidea点击:

Google Hangouts Meet API Documentation

javaapichatgoogle-hangoutshangouts-api

提问by max_dev

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

我正在寻找 Google Hangouts Meet 的原始 api 文档。我注意到一个机器人挂断https://github.com/tdryer/hangups使用这些网址:

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.

但我找不到任何参考资料。

采纳答案by Chii

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

您所指的那个 repo 解释了他们从哪里得到它:

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.

与其前身 Google Talk 不同,Hangouts 使用专有的、不可互操作的协议。挂断是通过对该协议进行逆向工程来实现的,这使其能够支持通过 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.

基本上,该库的作者只是颠倒了那些 REST api 调用。大概是通过使用实际的 google 环聊,然后查看它进行的网络调用。

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

我不相信谷歌有任何关于此的文档。