Hi @tommy,
I have the same error. I just cloned https://github.com/zoom/sample-app-web into my laptop and tried to connect to an ongoing live meeting.
I still have a free plan.
I have created oAuth/JWT/SDK client apps in zoom. Then provided the SDK clientID and secret in this cloned repository. I cannot join to my meeting. Here is the init() from index.js file under CDN subproject.
ZoomMtg.init({
leaveUrl: 'http://www.zoom.us',
isSupportAV: true,
success: function () {
ZoomMtg.join(
{
meetingNumber: meetConfig.meetingNumber,
userName: meetConfig.userName,
signature: signature,
apiKey: meetConfig.apiKey,
passWord: meetConfig.passWord,
success: function(res){
$('#nav-tool').hide();
console.log('join meeting success');
},
error: function(res) {
console.log(res);
}
}
);
},
error: function(res) {
console.log(res);
}
});
This is what I see on my browser console:
{method: "join", status: false, result: null, errorMessage: "Api key length error, must 22", errorCode: 4003}
Best regards,
Jude