I’m getting below error.
{type: ‘JOIN_MEETING_FAILED’, reason: ‘This account does not exist or does not belong to you’, errorCode: 200}
I’m using all credentials correctly but still getting the same error. I’m getting this error on react with below code.
import React, {useState} from ‘react’
import ZoomVideo from ‘@zoom/videosdk’
const sdkToken =“my_SDK_TOKEN”;
const sessionName = “Math”;
const userName = “Teacher One”;
const sessionKey = “my_session_key”;
let client = ZoomVideo.createClient()
let stream
await client.init(‘en-US’, ‘Global’, { patchJsMedia: true })
await client.join(sessionName, sdkToken, userName, ‘optional’)
stream = client.getMediaStream()
const App = () => {
return(
)
}
export default App
It is pretty urgent case.
Please help out.
Thanks and Regards
Abhay