There are previous discussions here regarding starting a Google Hangout from an intent on Android: start google hangouts in android
How can I start a Google Hangout in Android with an Intent?
The conclusion was that this was not possible. It is a requested enhancement here: https://code.google.com/p/google-plus-platform/issues/detail?id=385
However, yesterday Google released a new Hangouts app, with a new set of intents. Is starting a hangout via intent now possible?
I have been partially successful with action=android.intent.action.VIEW
, data=content://plus.google.com/hangouts
.
However, I want to pass the name or ID of the person I want to call--the recipient name. I can't figure this out.
The new browser-based hangout app starts a hangout with a URL something like this:
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.
I assume that not all of these parameters are necessary to start a hangout, but I cannot decipher how to pass the recipient name in the intent.
Any thoughts? Thank you.
See Question&Answers more detail:os