I am using zoom web sdk 2.5.0
please help me
hi @hbetancur , could you share if there is any addition error messages in your browser console?
Please watch the solutions here :
→ https://youtube.com/playlist?list=PLtCPInQA1B7vBAtYCBQzUFfq7B8DpMDio
@hbetancur are you trying to start the meeting or join?
@naeem.ahmedk Start the meeting
@hbetancur The user belonging to that Email (&email=aG…) has host/cohost rights on your account?
@hbetancur The user has host in my account?
are you passing valid email? I mean decoding before passing it inside join({}). And how you are generating signature?
Please watch here all the WebSDK Integrations
valid email meaning in zoom account email id ? Backend generating signature using php.
Try using the below code for signature generation inside directly on your page for testing purposes so, that you can verify there is no problem with your sdkKey and sdkSecret.
ZoomMtg.generateSDKSignature({
meetingNumber:payload.meetingNumber,
role:payload.role,
sdkKey:payload.sdkKey,
sdkSecret:payload.sdkSecret,
success:function(signature)
{
ZoomMtg.init({
leaveUrl:payload.leaveUrl,
success:function(data)
{
ZoomMtg.join({
meetingNumber:payload.meetingNumber,
signature:signature.result,
sdkKey:payload.sdkKey,
userName:payload.userName,
userEmail:payload.userEmail,
passWord:payload.passWord,
tk:'',
success:function(){
console.log('-- Joined --');
},
error:function(error)
{
console.log(error);
}
})
},
error:function(error)
{
console.log(error);
}
})
},
error:function(error)
{
console.log(error);
}
})
Please use user email, not user id.
After join meeting screen is black.
Please share the screenshot of the log. If a black screen happening then there is some problem with your passed params.
Hi, I am also facing this issue. Kindly, guide me.
@djbreio Please watch the WebSDK Integration session here
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.