Disable registration prompt when joining a webinar

Description
Hi,
We have integrated the zoom sdk in the electron application. When we try to join a webinar a dialog is shown asking for the email and name. We are able to populate the fields using prePopulateWebinarRegistrationInfo(email, displayname). In the android sdk we can achieve this by setting no_webinar_register_dialog = true and passing the data in a handler. Is there any way to prevent this dialog from showing or is it possible to submit it programmatically?

Also is there any way to prevent the users from accessing the in meetings settings?

Which version?
Electron SDK version: v4.6.21666.0428

Hi @Seethaprasad_Mandike,

Thanks for the post. If you would like to disable the registration prompt when joining a webinar, you may:

  1. Use the interface MeetingConfig_RedirectWebinarNeedRegister(in lib\zoom_meeting_configuration.js), pass true to disable the dialog
  2. Use MeetingConfig_PrePopulateWebinarRegistrationInfo to handle the registration.

Regarding this question, currently we do not have an interface for this.

Thanks!

Hi Carson,
Thank you for the reply. We were able to remove the register prompt.

Is there any way to hide the password, the invitation URL and the participant list from being shown to the participants in the meeting. Our objective is to make sure the participants do not invite any one else into the meeting.

Edit: Just to be clear we want to hide the password and disable copying of the invitation url in the UI.

Hi @Seethaprasad_Mandike,

Thanks for the reply. The password cannot be hidden. If you would like to hide the info button, you may use the hideMeetingInfoButtonOnVideo in ZoomSDKMeetingConfiguration.h

Thanks!

Hi @carson.zoom,

The above function is available only in mac os. Which function should be to hide the info button on windows.

Hi @Seethaprasad_Mandike,

The corresponding interface in Windows is: IMeetingUIElemConfiguration.HideMeetingInfoOnMeetingUI(bool bHide)

Hope this helps. Thanks!

Hi Carson_Chen,

We have integrated the latest zoom electon sdk in our Mac application. Can you please help us how to hide the invite button in the “Participants” menu. Details are given below.

List of functions used:

    functionObj.enableInviteButtonOnMeetingUI(false)
    functionObj.hideCopyUrlOnInviteWindow(true)
    functionObj.hideCopyInvitationOnInviteWindow(true)
    functionObj.setShowInviteDlgTabPage(1,false);

Issue Screenshot:

Version Details:

Zoom SDK Version : v5.0.24433.0616
Electron Version : 8.4.0

Hi @Seethaprasad_Mandike,

Thanks for the info and the screenshot. We are able to identify an issue with the “hide the invite button” interface and we will fix this in the next release.

Thanks!