Question
Uncaught TypeError: _.isNil is not a function at eval (zoomus-websdk.umd.min.js:22772)
I've integrated SDK for zoom meeting and getting error (Uncaught TypeError: _.isNil is not a function at eval (zoomus-websdk.umd.min.js:22772)) while joining the meeting.
ZoomMtg.init({
isSupportAV: true,
success: success => {
ZoomMtg.join({
signature: 'ZFp6dkExTW9UQkNRN0NxOTE2dEZSQS45NjMxMTcwODAyMi4xNjM0MjkxNTczNjUxLjEuY09jTFI3cGc2V0FnNWl=',
meetingNumber: 9631*****,
userName: 'Testuser',
apiKey: '**********',
userEmail: 'test@test.com',
passWord: '757915',
role: 1,
success: success => {
console.log(success)
},
error: error => {
console.log(error)
}
})
},
error: error => {
console.log(error)
}
})
