我正在为hipchat编写附加组件。所以,基本上,我想:
我不需要帮助来显示消息(步骤4),我只需要知道如何构建环聊网址。我需要这样的东西:
https://plus.google.com/hangouts?users[0]=user1@gmail.com&users[1]=user3@gmail.com
我知道我可以开始访问HO:http://hangouts.google.com/start 但是,我不想要这个。 我想要http://hangouts.google.com/start的结果网址。我想要这个:https://plus.google.com/hangouts/_/xxxoiiasdioasodnahsdhasd,如果它可以提供用户的邀请
答案 0 :(得分:2)
没有可用于启动环聊的直接网址。您最好的选择是在用户自己的网站上为用户提供一个网址,该网址会向Hangout Button呈现指定邀请对象的人。
<html>
<head>
<script type="text/javascript">
<title>Hangout button demo: Inviting people</title>
<link rel="canonical" href="http://www.example.com" />
</script>
</head>
<body>
<script type="text/javascript" src="https://apis.google.com/js/platform.js"></script>
<g:hangout render="createhangout"
invites="[{ id : '1234', invite_type : 'PROFILE' },
{ id : 'foo@example.com', invite_type : 'EMAIL' }]">
</g:hangout>
</body>
</html>
答案 1 :(得分:2)
例如,使用这样的结构:
https://hangouts.google.com/hangouts/_/OrganizationDomain.com/group-name
<强>其中:强>
OrganizationDomain.com :是否将承载视频群聊对话的组织域名。 (在您的特定情况下,它可能是用于在HipChat上登录的相同域。)
群组名称 :可以是之前创建的永久群组。或者自动创建一个新组。
备注:强>
请记住,OrganizationDomain.com必须由Google G Suite管理才能允许自动创建组。另外,请查看how to start a group conversation。