Google环聊按钮:如何命名对话?

时间:2016-08-04 10:39:39

标签: hangout google-hangouts hangouts-api

我已使用以下代码

在我的项目中集成了Google环聊按钮

来源:Documentation

    环聊按钮演示:邀请人                    

问题

视频群聊的名称为Unnamed Hangout,如下面的屏幕截图所示:

enter image description here

是否可以为环聊电话命名?

1 个答案:

答案 0 :(得分:0)

我是这样创造的:

<div id="placeholder">&nbsp;</div>
<script>
  gapi.hangout.render('placeholder', {
    'topic': 'TITLE',
    'render': 'createhangout',
    'hangout_type': 'onair',
    'invites': [{ 'id': 'example@email.com', 'invite_type' : 'EMAIL' }, ],
    'widget_size': 175,
    'initial_apps': [{
      'app_id' : '937231998771',
      'app_type' : 'ROOM_APP' 
    }]
  });
  window.___gcfg = {
    lang: 'es-419'
  };
</script>