Joining meeting error - The meeting number is wrong

Description

I try to use the SDK but always got this error.
I tried first with the SDK Keys, and then (after reading some posts here) with the JWT APi Key & Secret

Here is the generated signature with JWT :

Here is the Room number :

Error
/**/localJsonpCallback({“status”:false,“errorCode”:200,“errorMessage”:“The meeting number is wrong.”,“result”:null});

To Reproduce(If applicable)
Steps to reproduce the behavior:

  1. I created the meeting with the Zoom Interface
  2. I go to a web page hosting the SDK
  3. Generate the signature above
  4. Pass through that code :
    ZoomMtg.init({
    leaveUrl: meetConfig.leaveUrl,
    isSupportAV: true,
    success: function () {
    ZoomMtg.join(
    {
    meetingNumber: “”,
    userName: “test”,
    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);
    }
    });

Screenshots

Smartphone (please complete the following information):

  • Device: Win10#firefox/75.0

Additional context
I tried also direct with the sample App (GitHub - zoom/sample-app-web: Zoom Web SDK Sample App)
but it doesn’t work

Hey @r.potier,

When generating the signature, please do not include dashes -

Thanks,
Tommy