How can I hide require password page when joining meeting zoom electron

How can I hide the require password page when joining meetings in zoom electron and get a response from requiring the password?

image

Hi iam.werter,

Thanks for using Zoom SDK. You may use the following interface to hide this dialog:

zoomconfiguration.MeetingConfig_EnableInputMeetingPasswordDlg

And use the following callback:

onInputMeetingPasswordAndScreenNameNotification()

In this callback, you may use the following interface to finish the process:

MeetingConfig_GetRequiredInfoType;
MeetingConfig_InputMeetingPasswordAndScreenName;
MeetingConfig_InputMeetingIDAndScreenName
MeetingConfig_InputMeetingScreenName
MeetingConfig_MeetingPasswordAndScreenNameHandler_Cancel

Hope this helps. Thanks!

1 Like