Description
If I try to join from web SDK with host email it gives an error with popup header Joining webinar timeout. and text in body Fail to join the meeting. The message is not clear and the error callback is not triggered in this case. I was looking for a way to get the exact message which I can show in Alert and host can try again with a new email. The current message does not give any information regarding the cause of failure. Can you please let me know why the error callback is not triggered or if there is any way to get the exact message which I can show in UI
Error
Joining webinar timeout. Fail to join the meeting.
Which version?
1.7.10
To Reproduce(If applicable)
Steps to reproduce the behavior:
- Start webinar from zoom desktop app
- Join from the web SDK with same email
Screenshots
Additional Info
Below is the reference of code which I am using while joining meeting and none of callbacks are called (success or error) in above scenario
ZoomMtg.join({
meetingNumber: meetConfig.meetingNumber,
userName: meetConfig.userName,
signature,
apiKey: meetConfig.apiKey,
userEmail: meetConfig.email,
passWord: meetConfig.passWord,
success() {
console.log(‘Success’);
},
error(e) {
console.log(‘Error while join meeting’, e);
},
});
