Web SDK Hide meeting information

I managed to join Zoom meeting using Web SDK , however i want to use zoom for teaching purposes so that only authorized users shall join meeting through my web sdk only .

My Issue is , when meeting load user can click on (i) and all meeting info is displayed , meeting number & password .

question is : how to hide meeting information , or allow users to join meetings through my website only .

Hey @farid321,

You can hide the meeting information by not including the respective meeting info in the meetingInfo array in the ZoomMtg.init({}) function with the new 1.7.9 version:

https://zoom.github.io/sample-app-web/ZoomMtg.html#init

ZoomMtg.init({
    debug: true,
    leaveUrl: 'http://www.zoom.us',
    isSupportAV: true,
    meetingInfo: [
      'topic',
      'host',
    ]
});

Don’t include pwd or mn.

Thanks,
Tommy

4 Likes