我已编写以下代码来发起环聊电话。
<html>
<head>
<title>Hangout button demo: Inviting people</title>
</head>
<body>
<script src="https://apis.google.com/js/platform.js" async defer></script>
<g:hangout render="createhangout">
</g:hangout>
</body>
</html>
问题 如何在环聊呼叫中添加一些默认成员?
到目前为止我尝试了什么
根据谷歌文档,我尝试了以下代码snipet
Documentation: Basic page with profile and e-mail invites
<html>
<head>
<title>Hangout button demo: Inviting people</title>
<link rel="canonical" href="http://www.example.com" />
</head>
<body>
<script src="https://apis.google.com/js/platform.js" async defer></script>
<g:hangout render="createhangout"
invites="[{ id : 'foo@example.com', invite_type : 'EMAIL' }]">
</g:hangout>
</body>
</html>
但它也无效。