Joining meeting timeout. Meeting has not started

Description
meetingNumber: 3792787679

Error
Joining meeting timeout. Meeting has not started

Which Web Client SDK version?
Knowing the version can help us to identify your issue faster. [e.g. 1.9.0]

Screenshots

Device (please complete the following information):

  • Device: Macbook
  • OS: Macos
  • Browser: Chrome
  • Browser Version [91.0.4472.114 (Official Build) (x86_64)]

To Reproduce(If applicable)
Steps to reproduce the behavior:

  • Step 1:
  • Open Zoom APP(Macos), start meeting with Host
  • Open chrome, and join with role = 0, → fail (Web Client SDK)
  • Step 2:
  • Open chrome, and join with role = 1. → working
  • Open Safari, and join with role = 0 → working

I can join role = 0 (Attendee) when Used Zoom APP(Macos)?

my code:

// For Global use source.zoom.us:
ZoomMtg.setZoomJSLib(‘https://source.zoom.us/1.9.5/lib’, ‘/av’);

     ZoomMtg.preLoadWasm();
     ZoomMtg.prepareJssdk();
     ZoomMtg.init({
        disableCORP: true,
        isSupportAV: true,
        leaveUrl: "/index.html",
        success: function () {
           const meetingConfig = {
              meetingNumber: "3792787679",
              userName: "Sting",
              apiKey: ".....",
              userEmail: "...",
              passWord: ".....",
           }
           const signature = ".....";
           ZoomMtg.i18n.load('en-US');
           ZoomMtg.i18n.reload('en-US');
           console.log("ZoomMtg.init")
           ZoomMtg.join({
              meetingNumber: meetingConfig.meetingNumber,
              userName: meetingConfig.userName,
              signature: signature,
              apiKey: meetingConfig.apiKey,
              userEmail: meetingConfig.userEmail,
              passWord: meetingConfig.passWord,
              success: function (res) {
                 console.log("join meeting success");
                 console.log("get attendeelist");
                 ZoomMtg.getAttendeeslist({});
                 ZoomMtg.getCurrentUser({
                    success: function (res) {
                       console.log("success getCurrentUser", res.result.currentUser);
                    },
                 });
              },
              error: function (res) {
                 console.log("----------", res);
              },
           });
        },
        error: function (res) {
           console.log("uuuu", res);
        },
     });

I am having the same problem
ZoomMtg.preLoadWasm();
ZoomMtg.prepareJssdk();
ZoomMtg.init({
disableCORP: true,
isSupportAV: true,
leaveUrl: “/index.html”,
success: function () {
const meetingConfig = {
meetingNumber: “3792787679”,
userName: “Sting”,
apiKey: “…”,
userEmail: “…”,
passWord: “…”,
}
const signature = “…”;
ZoomMtg.i18n.load(‘en-US’);
ZoomMtg.i18n.reload(‘en-US’);
console.log(“ZoomMtg.init”)
ZoomMtg.join({
meetingNumber: meetingConfig.meetingNumber,
userName: meetingConfig.userName,
signature: signature,
apiKey: meetingConfig.apiKey,
userEmail: meetingConfig.userEmail,
passWord: meetingConfig.passWord,
success: function (res) {
console.log(“join meeting success”);
console.log(“get attendeelist”);
ZoomMtg.getAttendeeslist({});
ZoomMtg.getCurrentUser({
success: function (res) {
console.log(“success getCurrentUser”, res.result.currentUser);
},
});
},
error: function (res) {
console.log("----------", res);
},
});
},@best spin bike reviews
error: function (res) {
console.log(“uuuu”, res);
},
});

@larkiawara7 @Sting

Thanks for reaching out to the Developer Forum. Are you able to clarify the issue that you’re seeing?

Are you seeing this when testing with the Sample Web App as well? I would also try testing with the latest version (1.9.6)

Max

sorry, my mistake, i have to use Zoom.us APP to host. i used Zoom Room APP to host

Awesome, I’m glad that you were able to get that sorted out! I’ll go ahead and close this topic now but feel free to open a new topic if you encounter any further issues or questions.

Max