Webinar ZoomMtg.init works but ZoomMtg.join does not

Description
We updated Web sdk to 1.9.9.
We can successfully init our webinar, but we can’t join it.
We have already applied solutions suggested in the topics regarding “cannot joining the meeting”, but without success.

ZoomMtg.checkSystemRequirements() returnes us following informations:

Zoom support you browser. Chrome/94.0.4606.71
You browser support below features {“browserInfo”:“Chrome/94.0.4606.71”,“browserName”:“Chrome”,“browserVersion”:“94.0.4606.71”,“features”:[“viewSharing”,“screenShare”,“computerVideo”,“computerAudio”,“callIn”,“callOut”,“chat”,“closedCaption”,“QA”,“POLLING”,“BREAKOUT”,“GALLARY”],“browserAbility”:{“SharedArrayBuffer”:false,“WebCodecs”:true}}

Error
No error

Which Web Meeting SDK version?
1.9.9

To Reproduce(If applicable)
Below our code:

meetConfig = {
apiKey: API_KEY,
meetingNumber: 89014964113,
userName: userEmail,
passWord: “*****”,
role: parseInt(document.getElementById(‘meeting_role’).value, 10)
};

After generate Signature, we call Zoom Init
Generated Signature:

ZoomMtg.init({
leaveUrl: url,
isSupportChat: true,
showMeetingHeader: false,
disableJoinAudio: false,
disableInvite: true,
success: function() {
console.log(“SUCCESS INIT”);
ZoomMtg.join({
signature: signature,
meetingNumber: meetConfig.meetingNumber,
userName: name,
apiKey: meetConfig.apiKey,
userEmail: meetConfig.userName,
passWord: meetConfig.passWord,
success: function(res) {
$(‘#nav-tool’).hide();
console.log(“Meeting success”);
$(“#zmmtg-root”).show();
},
error: function(res) {
console.log(res);
}
});
},
error: function(res) {
console.log(res);
}
});

Device (please complete the following information):

  • Browser: Chrome
  • Browser Version: 94.0.4606.71

Hey @it17 , happy to help!

Can you please clarify what you mean by does not work? Are the success or error callbacks being called?

Are there any errors in the browser console?

Thanks,
Tommy

Hi Tommy,
no errors are displayed in browser console.
I can see the
console.log(“SUCCESS INIT”);
in browser console, but nothing happens.

Generated signature:

Hey @it17 ,

Checkout my response here:

Please email developersupport@zoom.us with the exact values you are passing into the ZoomMtg.join() function and I will take a look. :slight_smile:

Thanks,
Tommy

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.