Create meeting using sdk - Angular

Description

How to create a meeting with the option of joint meeting before the host?
join_before_host:true

Hey @karthi_srv,

Have you tried calling the create meeting API?

Please provide more details about your issue so we can help.

Thanks,
Tommy

Hi @tommy

I like to disable the header

showMeetingHeader: false

But its not working

1 Like

I need to hide following option

  1. Participants
  2. … more
  3. Header (i and encryption icon on top of the meeting)

how can i do it

Hey @karthi_srv,

Please place the respective functions in your join meeting success callback. Let me know if that works. If not, please share your code snippets so I can debug,

Thanks,
Tommy

Trying the hide the header doesn’t work for me either.
Tried it in multiple places:

        ZoomMtg.init({
            debug: true,
            leaveUrl: curUrl,
            isSupportAV: true,
            isSupportChat: true,
            disableInvite: true,
            showMeetingHeader: false,
            success: function() {
                ZoomMtg.join({
                    signature: "<?php echo $signature; ?>",
                    apiKey: "<?php echo $this->api_key; ?>",
                    meetingNumber: <?php echo $this->meetingid; ?>,
                    userName: "<?php echo $userName; ?>",
                    passWord: "<?php echo $this->password; ?>",
                    userEmail: "<?php echo $this->email; ?>", 
                    success(res) {
                        ZoomMtg.showMeetingHeader({
                            show: false
                         });
                    },
                    error(res) { 
                        console.log(res);
                    }
                })
            },
            error: function() {
                console.log("init failed");
            }
        });

Hey @ativsoftware,

What version of the Web SDK are you using? Can you also please provide a screenshot of the issue?

Thanks,
Tommy

Web SDK v. 1.7.8

Screen Shot 2020-06-03 at 11.14.47 AM

Same issue here with 1.7.8 web SDK. Configured to hide meeting header as follows, yet it is still visible. The other settings (such as isSupportChat) seem to work.

    ZoomMtg.init({
        leaveUrl: '?',
        isSupportAV: true,
		isSupportChat: false,
		showMeetingHeader: false, 
		videoHeader:true,
		isLockBottom:false,
        success: function () {
          		 ZoomMtg.join(
 {
     meetingNumber: meetConfig.meetingNumber,
     userName: meetConfig.userName,
     signature: signature,
     apiKey: meetConfig.apiKey,
     userEmail: 'user-email@gmail.com',
     passWord: "",
     success: function(res){
         console.log('join meeting success');
     }
 }

);
},
error: function(res) {
console.log(res);
}
});

Hey @adamkohm, @ativsoftware,

I am confirming if this is a bug or how to properly use the function.

Thanks,
Tommy

Hey @ativsoftware, @adamkohm,

ShowMeetingHeader, used to hide / show the meeting ID that was at the top of the screen. Since we removed the meeting ID from the header a couple weeks ago, technically this function does not do anything anymore.

We will update the docs.

Thanks,
Tommy

But when you embed a webinar/meeting using the SDK, people can still get the meeting ID number by clicking on the info icon in the top right. That is what we are trying to prevent. We do not want the meeting ID accessible.

Clicking on the info icon in the top left also will display the password, which we don’t want participants to see.

Hey @adamkohm, @ativsoftware,

You can hide the icon on the top right via CSS or JS. We do not have a built in function to hide it right now.

Thanks,
Tommy

Thanks. Sorry to ask, but is there a guide to these classes somewhere…looking for the ID of the div we should be targeting, Maybe I missed this somewhere.

.meeting-info-icon__icon { display: none !important; }
.meeting-info-icon__icon-wrap { display: none !important; }

Hey @ativsoftware, @adamkohm,

We are also releasing a way to hide the meeting info in our upcoming 1.7.9 release:

Thanks,
Tommy

Thank you! Appreciate it. Looking forward to the next release and hoping it fixes a few issues we keep having.

1 Like

Happy to help! :slight_smile:

Thanks,
Tommy