Stuck in "Joining Meeting..." for at least 15 seconds

Description
A clear and concise description of what the question is.

Sometimes, meeting bot with Meeting SDK for Web can’t join meeting for at least 15 seconds.

  1. bot attempts joining meeting with ZoomMtg.join method

  2. host approves the bot in waiting room

  3. stuck in “ミーティングに参加しています…” (= means “joining meeting…”) for at least 15 seconds.

Browser Console Error
The full error message or issue you are running into.

I don’t know if this is related, but the following error log was also output.

TypeError: self.crypto.randomUUID is not a function
    at new p (https://source.zoom.us/zoom-meeting-2.15.2.min.js:2:453681)
    at https://source.zoom.us/zoom-meeting-2.15.2.min.js:2:443178
    at Generator.next (<anonymous>)
    at https://source.zoom.us/zoom-meeting-2.15.2.min.js:2:439694
    at new Promise (<anonymous>)
    at d (https://source.zoom.us/zoom-meeting-2.15.2.min.js:2:439439)
    at Function.b.init (https://source.zoom.us/zoom-meeting-2.15.2.min.js:2:443072)
    at https://source.zoom.us/zoom-meeting-2.15.2.min.js:2:3851026
    at <anonymous>
TypeError: Cannot read property 'map' of null
    at https://source.zoom.us/2.15.2/lib/av/1503_js_media.min.js:1:143535
    at E (https://source.zoom.us/2.15.2/lib/av/1503_js_media.min.js:1:177994)
    at Generator._invoke (https://source.zoom.us/2.15.2/lib/av/1503_js_media.min.js:1:177747)
    at Generator.forEach.e.<computed> [as next] (https://source.zoom.us/2.15.2/lib/av/1503_js_media.min.js:1:178174)
    at r (https://source.zoom.us/2.15.2/lib/av/1503_js_media.min.js:1:27937)
    at s (https://source.zoom.us/2.15.2/lib/av/1503_js_media.min.js:1:28136)
    at https://source.zoom.us/2.15.2/lib/av/1503_js_media.min.js:1:28195
    at new Promise (<anonymous>)
    at new t (https://source.zoom.us/2.15.2/lib/av/1503_js_media.min.js:1:1768)
    at https://source.zoom.us/2.15.2/lib/av/1503_js_media.min.js:1:28082
TypeError: m.AK.connectSocket is not a function
    at Kt (https://source.zoom.us/zoom-meeting-2.15.2.min.js:2:1068299)
    at Xt (https://source.zoom.us/zoom-meeting-2.15.2.min.js:2:1111866)
    at https://source.zoom.us/zoom-meeting-2.15.2.min.js:2:1125524
    at https://source.zoom.us/2.15.2/lib/vendor/redux-thunk.min.js:1:364
    at Vt (https://source.zoom.us/zoom-meeting-2.15.2.min.js:2:3798143)
    at Object.handleOnMessage (https://source.zoom.us/zoom-meeting-2.15.2.min.js:2:3799223)
    at WebSocket.i.<computed>.i.<computed>.onmessage (https://source.zoom.us/zoom-meeting-2.15.2.min.js:2:3799980) 

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

Meeting SDK Code Snippets
The code snippets that are causing the error / issue so we can reproduce.

// meetingConfig has each parameter
ZoomMtg.join({
        sdkKey: meetingConfig.sdkKey,
        signature: meetingConfig.signature,
        meetingNumber: meetingConfig.meetingNumber,
        userName: meetingConfig.userName,
        userEmail: meetingConfig.userEmail,
        passWord: meetingConfig.passWord,
        success: function (data) {
          console.log(
            JSON.stringify({
              type: 'join',
              data,
            })
          );
          ...
        },
        error: function (data) {
          console.log(
            JSON.stringify({
              type: 'join',
              data,
            })
          );
        },
      });

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

  1. Go to ‘…’
  2. Click on ‘…’
  3. Scroll down to ‘…’
  4. See error

Screenshots
If applicable, add screenshots to help explain your problem.

Troubleshooting Routes
The troubleshooting attempt types you’ve already exhausted, including testing with the appropriate sample app (found on Zoom · GitHub).

Device (please complete the following information):

  • Device: GCE instance
  • OS: Ubuntu 22.04
  • Browser: chrome
  • Browser Version: google-chrome-stable_108.0.5359.124-1

Additional context
Add any other context about the problem here.

@kanata.koyama ,

Thank you for posting in the Zoom Developer Forum. Sorry for not getting back to you sooner. Is this behavior still an issue for you?

thank you for reply!
yes, it’s still an issue for me…

@kanata.koyama,

Have you identified the cases in which the user gets stuck in the waiting room? Does this happen on the first test, or do you only see this behavior when attempting to join the second or third time?

Please see to this helpful blog on creating tests for automated clients:

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