0

I have integrated the google hangout button in my project by using following code

Source: Documentation

Hangout button demo: Inviting people

Problem

The hangout is named as Unnamed Hangout as shown in screenshot below:

enter image description here

Is it possible to give a name to the hangout call?

Vikas Bansal
  • 10,662
  • 14
  • 58
  • 100

1 Answers1

0

I've created this way:

<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>
nicogaldo
  • 565
  • 2
  • 8
  • 28