Description
I’m trying to use the node sdk and i get a signature and see Captcha but then I get the following error:
Your connection has timed out and you cannot join the meeting. Verify your network connectivity and try again.
The Meeting Number is not found
This is my code:
// prepare required files
ZoomMtg.preLoadWasm();
ZoomMtg.prepareJssdk();
ZoomMtg.generateSignature({
meetingNumber:,
apiKey: '', //SDK Key and Secret not JWT but tried both
apiSecret: '',
role: 0,
success: function (res) {
console.log(res);
let signature = res.result
ZoomMtg.init({
leaveUrl: 'http://localhost:3000',
isSupportAV: true,
success: (response) => {
console.log(response)
ZoomMtg.join({
signature: signature,
apiKey: '',
meetingNumber:,
userName: '',
userEmail: '',
// password optional; set by Host
// passWord: '',
success: (success) => {
console.log(success)
},
error: (error) => {
console.log(error)
}
})//.then(console.log).catch(console.error)
},
error: (error) => {
console.log(error)
}
})
},
error: (error) => {
console.log(error)
}
});
I’m also curious as if I need a Pro account to use the SDK? I would like any user to create a zoom room and have a few users join and be able to screenshare, etc. If I have the SDK can I embed the zoom functionality on my site? Thank you very much.