success & error callbacks don’t run in the this.client.join() function. The functionality of my Web SDK actually works okay - so I can join meetings without an issue. But I want to be able to add custom functions in the error callback and success callbacks. They just don’t seem to run at all.
I’m using websdk/embedded. I see you’re using just websdk. Please try with ZoomMtgEmbedded.createClient(); and let me know?
this.client.join({
sdkKey: this.sdkKey,
signature: signature,
meetingNumber: this.meetingNumber,
password: this.passWord,
userName: this.userName,
userEmail: this.userEmail,
success: (success) => {
console.log("success);", success);
},
error: (error) => {
console.error("error", error);
},
})
@j.schoenemeyer let me know if it is working for you. Thanks in advance!



