我编写了以下代码来启动环聊通话。
<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>
问题 如何在环聊通话中添加一些默认成员?
到目前为止我尝试过的
根据谷歌文档,我尝试了以下代码片段
<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>
但它也不起作用。