Unable to access Meeting SDK Web versions on 2.18.3

@zoomus/websdk”: “^2.18.3”,
“react”: “^16”,
when click join meeting, will have this error :
2.18.3/lib/av/audio.encode.wasm 403 (Forbidden)
2.18.3/lib/av/video.simd.wasm 403 (Forbidden)
2.18.3/lib/lang/en-US.json 403 (Forbidden)
and code below:
const { ZoomMtg } = await import(‘@zoomus/websdk’)
ZoomMtg.setZoomJSLib(‘2.18.3/lib’, ‘/av’)

        ZoomMtg.preLoadWasm()
        ZoomMtg.prepareWebSDK()
        // loads language files, also passes any error messages to the ui
        ZoomMtg.i18n.load('en-US')
        ZoomMtg.i18n.reload('en-US')
        // init zoom element
        const element = document.getElementById('zmmtg-root')
        if (isNil(element)) {
            throw new Error('Invalid zmmtg-root element')
        }
        element.style.display = 'block'
        const { zoomData } = params
        const { signature, meetingNumber, password, sdkKey } = zoomData
        const leaveUrl = `xxx`
        ZoomMtg.init({
            leaveUrl: leaveUrl,
            success: (success: any) => {
                console.log(success)

                ZoomMtg.join({
                    signature: signature,
                    sdkKey: sdkKey,
                    meetingNumber: 1,
                    passWord: password,
                    userName: 'username',
                    success: (success: any) => {
                        console.log(success)
                    },
                    error: (error: any) => {
                        console.log(error)
                    },
                })
            },
            error: (error: any) => {
                console.log(error)
            },
        })

@zoom_owner Can you give some advices to handle this error?

Thank you for posting in the Zoom Developer Forum, @jo.yj.liao ! It looks like you are using an older version of the SDK. Have you attempted to join using the latest version? Or are you only experiencing this issue with the current version? If possible, could you share a screenshot of the entire console log?

SDK minimum version policy

Version enforcements for developers

I have updated to @zoom/meetingsdk to 3.10.0 , react version: 18.3.1 , next version is 12, it run normal on my local but have this error:


When deployed to production will have this error and cause page blank

@jo.yj.liao ,

That looks like a SharedBufferArray error. Have you enabled it? Here is our support documentation on this topic.

@donte.zoom SharedBufferArray is enabled, but still have this error

That’s odd, @jo.yj.liao ! Are you using an iframe in your implementation? And is this only happening in production? Also, have you tried updating your browser? I’ve seen issues where browser versions can cause unexpected behavior.

@donte.zoom Not use iframe, this error happening on local,
production has another error:


Chrome version:

Code:

@jo.yj.liao ,
What stack are you using to build with the SDK?

@zoom/meetingsdk to 3.10.0 , react version: 18.3.1 , next version is 12

@jo.yj.liao ,
Thanks for that, where are and how you are deploying your application ?

Use docker download images and deployed in gitlab

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