After upgrading to the latest Web SDK version 2.18.0 we are getting the “Fail to join meeting”. Upon inspecting the console we can see an “Inavlid Sdk key” error however we are using the same SDK key that was working on previous versions.
{
“method”: “join”,
“status”: false,
“result”: “Invalid sdkkey.”,
“errorMessage”: “Fail to join the meeting.”,
“errorCode”: 1
}
How to reproduce the issue
Occurs after clicking the join button
Which Web Meeting SDK version?
2.18.0
Meeting SDK Code Snippets
ZoomMtg.init({
leaveUrl: meetingConfig.leaveUrl,
webEndpoint: meetingConfig.webEndpoint,
disableCORP: !window.crossOriginIsolated, // default true
// disablePreview: false, // default false
externalLinkPage: ‘./externalLinkPage.html’,
success: function () {
console.log(meetingConfig);
console.log(“signature”, signature);
ZoomMtg.i18n.load(meetingConfig.lang);
ZoomMtg.i18n.reload(meetingConfig.lang);
ZoomMtg.join({
meetingNumber: meetingConfig.meetingNumber,
userName: meetingConfig.userName,
signature: signature,
sdkKey: “REDACTED”,
userEmail: meetingConfig.userEmail,
passWord: meetingConfig.passWord,
success: function (res) {
console.log(“join meeting success”);
console.log(“get attendeelist”);
ZoomMtg.getAttendeeslist({});
ZoomMtg.getCurrentUser({
success: function (res) {
console.log(“success getCurrentUser”, res.result.currentUser);
},
});
},
error: function (res) {
console.log(res);
},
});
},
error: function (res) {
console.log(res);
},
});
Device (please complete the following information):
Reproduced on Windows 11 Google Chrome