Zoom web SDK stuck on 'Joining Meeting'

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.

Error
There is no error displayed whatsoever

Which version?
1.8.3

Screenshots

Device

  • Device: [MacBook Pro]
  • OS: Big Sur
  • Version: 11.0.1 (20B50)
  • Browser: Microsoft Edge

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)
        }
      })

Hey @desmond1,

Thank you for reaching out to the Zoom Developer Forum. I was able to find a similar issue when looking through our historical forum posts:

As outlined there, please try removing the role property when joining the meeting to see if that resolves your issues.

I hope that helps!

Thanks,
Max

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