Video SDK Type and Version
Zoom Video Web SDK v1.12.14
Description
In Zoom Web SDK v1.12.14, the .join() method does not throw an error when provided with an invalid topic ID. Instead, it loads indefinitely and eventually times out. This behavior breaks error handling and complicates debugging.
Error
No error is thrown in the catch block on passing an invalid topicId. Expected behavior is observed in v1.12.5, where the following error is thrown:
{
"type": "JOIN_MEETING_FAILED",
"reason": "Verify JWT failed",
"errorCode": 200
}
Troubleshooting Routes
- Tested with different invalid topic IDs.
- Verified behavior across multiple SDK versions:
v1.12.5: Errors are thrown as expected.v1.12.14: No error is thrown; the SDK loads indefinitely.
Quick Repro Steps
- Use Zoom Video Web SDK v1.12.14.
- Generate a valid JWT signature.
- Call the
.join()method with an invalidtopicID:
await zmClient.join(topic + 'invalidId', signature, name, password).catch((e) => {
console.error(e);
});
- Observe that no error is thrown, and the method loads indefinitely.
- Downgrade to SDK v1.12.5, where the same call will throw the
JOIN_MEETING_FAILEDerror