I am trying to integrate the Zoom Web SDK onto my React App, I went through their documentation and followed the steps of their Sample App, but however - When I try to join A meeting from my App, It is stuck on Joining Meeting. as you can see from the image below. My code is as follows
import { ZoomMtg } from '@zoomus/websdk';
ZoomMtg.preLoadWasm();
ZoomMtg.prepareJssdk();
ZoomMtg.setZoomJSLib('node_modules/@zoomus/websdk/dist/lib', '/av');
`
ZoomMtg.init({
leaveUrl: <my-url>,
isSupportAV: true,
success: (success) => {
ZoomMtg.join({
signature: <signature-from-api>,
meetingNumber: <meeting-number>,
userName: <my-username>,
apiKey: <my-apiKey>,
userEmail: <my-email>,
passWord: <mypassword>,
role: 0,
success: (success) => {
console.log(success);
},
error: (error) => {
console.log(error);
}
})
},
error: (error) => {
console.log(error)
}
}) `