User Entered wrong password

Description

when joining a meeting with meeting ID and password if the user entered a wrong password
the MeetingStatus does not change to fail it keep at “MEETING_STATUS_CONNECTING”

how to proceed after this.

how to know that the user entered a wrong password or at least make the MeetingStatus change to fail so that I can Join the meeting again with a new password

To Reproduce(If applicable)
Steps to reproduce the behavior:
in the JoinMeetingParams() put a wrong password

Hi mohammed.aljammali,

Thanks for the post. Are you using Zoom default UI or Custom UI? If you are using Zoom default UI, then it should not stay with “MEETING_STATUS_CONNECTING” and a pop-up will show up and ask for the password.

If you are using Custom UI, the reason why the MeetingStatus stays at “MEETING_STATUS_CONNECTING” could be that the following listener has not been implemented or handled:

@Override
        public void onMeetingNeedPasswordOrDisplayName(boolean needPassword, boolean needDisplayName, InMeetingEventHandler handler) {
}

If the user enters the wrong password, it will keep the meeting status in connecting, trigger this listener to ask for the right password.

Hope this helps. Thanks!