Joining meeting timeout. The service is temporarily offline

Got the message “Joining meeting timeout. The service is temporarily offline.”

SDK Version 1.7.10

Get signature : success
Init : Success

==============================

this.meetingConfig = {

  apiKey: 'mykey',

  apiSecret: 'mySecret',

  meetingNumber: zoomMeetingNumber,

  userName: 'uname',

  password: 'password',

  leaveUrl: 'http://localhost:4200',

  role: 0,

  userEmail: 'mail@mail.com'

};

this.signature = ZoomMtg.generateSignature({

  apiKey: this.meetingConfig.apiKey,

  apiSecret: this.meetingConfig.apiSecret,

  meetingNumber: this.meetingConfig.meetingNumber,

  role: this.meetingConfig.role,

});

ZoomMtg.init({

  debug: true,

  webEndpoint: 'PSO web domain',

  showMeetingHeader: false,

  leaveUrl: 'http://localhost:4200',

  success: (res) => {

    ZoomMtg.join({

      meetingNumber: 123456,

      userName: 'uname',

      signature: this.signature,

      apiKey: 'mykey',

      userEmail: 'mail@mail.com',

      passWord: 'password',

      success: (res) => {

        console.log('join meeting success');

      },

      error: (res) => {

        console.log(res);

      },

    });

  },

  error: (res) => {

    console.log(res);

  },

});

Hey @harikrishnang,

Please follow this issue in this thread:

Thanks,
Tommy

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.