Description/Error
I am using the Web JS SDK to join meetings and I want to handle the situation where an attendee attempts to join a meeting after it has ended. The problem is that the SDK join() call is returning an errorCode of 1 with an errorMessage of ‘Invalid signature’ instead of the errorCode of 3001 and an errorMessage of ‘error not exist’
Which Endpoint/s or Web JS SDK?
ZoomMtg.join()
How To Reproduce (If applicable)
Steps to reproduce the behavior:
- Create a meeting using the REST API
- Use the Web SDK to join, attend and then end the meeting
- Use the Web SDK to attempt to join the meeting after it has ended
- The call to ZoomMtg.join() calls the provided “error” callback with errorCode 1 and errorMessage ‘Invalid signature’
- The expected result is errorCode 3001 and/or errorMessage ‘error not exist’
Screenshots (If applicable)
n/a
Additional context
We normally use the REST API to check the status of the meeting before joining, but there are some situations where this cannot be done so we need to simply attempt to join the meeting and handle the failure. It is important to be able to determine the difference between the meeting not existing and other failure conditions.