Hi,
I am using Zoom Web SDK version 2.17.0 to embed Zoom webinar to my website
When user join the webinar on my website, the error always display:
Joining webinar timeout.
Your connection has timed out and you cannot join the webinar. Verify your network connectivity and try again.
Here is the code that I am using:
ZoomMtg.setZoomJSLib('https://source.zoom.us/2.17.0/lib', '/av');
ZoomMtg.preLoadWasm();
ZoomMtg.prepareWebSDK();
ZoomMtg.i18n.load('en-US');
ZoomMtg.i18n.reload('en-US');
document.getElementById('zmmtg-root').style.display = 'block'
ZoomMtg.init({
leaveUrl: leaveUrl,
success: (success) => {
$('#zmmtg-root').show();
$('.buttonevent').hide();
ZoomMtg.join({
signature: signature,
sdkKey: sdkKey,
meetingNumber: meetingNumber,
passWord: passWord,
userName: userName,
userEmail: userEmail,
tk: registrantToken,
// zak: zakToken,
success: (success) => {
console.log(success)
},
error: (error) => {
console.log(error)
},
})
},
error: (error) => {
console.log(error)
}
})
Device (please complete the following information):
- OS: Windows 10
- Browser: Chrome
- Browser Version 119.0.6045.160 (Official Build) (64-bit)
Please help me!!
Thank you

