Hello,
Automatic recording not function.
I have the next lines of code in my project.
ZoomMtg.init({
leaveUrl: environment.apiZoom.urlZoomAgent,
isSupportAV: true,
success: (success) => {
console.log(success);
ZoomMtg.join({ // sessionStorage.setItem('signatureh', resDataMeeting.signature);
signature: resDataMeeting.signature,
meetingNumber: resDataMeeting.meetingNumber,
userName: resDataMeeting.agent,
apiKey: resDataMeeting.apiKey,
userEmail: '',
passWord: resDataMeeting.encryptedPassword,
success: (success) => {
ZoomMtg.record({
record: true
});
console.log(success)
},
error: (error) => {
console.log(error)
}
})
},
error: (error) => {
console.log(error)
}
})
However not record automatic in the cloud.
My account is (pro plan).
Please I need your help
Thanks.