TypeError: a is not a function at oY.join (zoomus-websdk-embedded.umd.min.js:2:1953743)


Meeting SDK Type and Version

Meeting SDK Type: Web
Version: “@zoomus/websdk”: “^2.6.0”,

Description
I am currently running into an TypeError whenever I try to join a meeting with client.join(config). I’ve tested with multiple zoom meetings. When I join a meeting hosted by account X, there is no draggable zoom meeting appears and the TypeError appears. When I join a meeting host account Y, a draggable zoom meeting appears, but there is still a Type Error. When I use the sample Zoom App provided by the docs, it works fine on meetings hosted by both account X and Y. (more on the error below)

EDIT: Ok so meetings hosted on both accounts result in the TypeError: a is not a function, and both do not display the meeting sdk anymore.

Error?

zoomus-websdk-embedded.umd.min.js:2 

Uncaught (in promise) TypeError: a is not a function
    at oY.join (zoomus-websdk-embedded.umd.min.js:2:1953743)
    at zoomComponent.tsx:45:1
    at invokePassiveEffectCreate (react-dom.development.js:23487:1)
    at HTMLUnknownElement.callCallback (react-dom.development.js:3945:1)
    at Object.invokeGuardedCallbackDev (react-dom.development.js:3994:1)
    at invokeGuardedCallback (react-dom.development.js:4056:1)
    at flushPassiveEffectsImpl (react-dom.development.js:23574:1)
    at unstable_runWithPriority (scheduler.development.js:468:1)
    at runWithPriority$1 (react-dom.development.js:11276:1)
    at flushPassiveEffects (react-dom.development.js:23447:1)

Troubleshooting Routes
^^ explained in description

How To Reproduce
I don’t even know how to reproduce the error

Any help would be helpful

Greetings and Welcome @dchoi.int,

Happy to help here – it looks like you are implementing the component view, is that accurate? If so, can you share a screenshot of your Join function? This will help diagnose what may be happening. In the meantime, check our support article which includes instructions on how to join a meeting.

Yes, Correct. I am implementing with the component view.

This is what I am sending in the Join Function

    client
      .join({
        sdkKey: process.env.ZOOM_VIDEO_SDK_KEY,
        signature: t,
        meetingNumber: MEETING_NUMBER,
        password: passWord,
        userName: 'Test1',
        userEmail: '',
        tk: '',
      })

The content is the following:

meetingNumber: "6953822868"
password: ""
sdkKey: "[ommitted for security purposes]"
signature: "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzZGtLZXkiOiJEZUVtSlBFT0RBZUlMSVRib1RWOVI0R09yVmRmRWpwb1dQcWsiLCJhcHBLZXkiOiJEZUVtSlBFT0RBZUlMSVRib1RWOVI0R09yVmRmRWpwb1dQcWsiLCJtbiI6IjY5NTM4MjI4NjgiLCJyb2xlIjowLCJpYXQiOjE2NjAxNDgxODQsImV4cCI6MTY2MDE1NTM4NCwidG9rZW5FeHAiOjE2NjAxNTUzODR9.u54ZJly06EVSSGBsjwTseGY1IUyNzPQMlTmHJTQXi04"
tk: ""
userEmail: ""
userName: "Test1"

Thank you for your help