这里有关于从 Android 上的意图启动 Google Hangout 的先前讨论: start google hangouts in android
如何使用 Intent 在 Android 中发起 Google Hangout?
结论是这是不可能的。这是此处请求的增强功能: https ://code.google.com/p/google-plus-platform/issues/detail?id=385
然而,昨天谷歌发布了一个新的环聊应用程序,带有一组新的意图。现在可以通过意图开始环聊吗?
我在action=android.intent.action.VIEW
,方面取得了部分成功data=content://plus.google.com/hangouts
。
但是,我想传递我要呼叫的人的姓名或 ID——收件人姓名。我想不通。
新的基于浏览器的环聊应用程序使用如下 URL 开始环聊:
https://plus.google.com/hangouts/_/CONVERSATION/[26-character ID]?hl=en_US&hscid=[19-digit ID]&hpe=[14-character value]&hpn=[Google+ Name of Recipient]&hnc=0&hs=41.
我假设并非所有这些参数都是启动环聊所必需的,但我无法破译如何在意图中传递收件人姓名。
有什么想法吗?谢谢你。