Got black screen while joining meeting in angular

when we click over the join meeting button we got black screen and in console it gives error
zoom version : [2.17.0]
ReferenceError: React is not defined
ERROR TypeError: h.AK.connectSocket is not a function

It seems like you’re encountering a JavaScript error related to React and the Zoom SDK. The error message indicates that React is not defined, and there’s also a TypeError related to the connectSocket function in the Zoom SDK.

Here are a few steps you can take to troubleshoot and potentially resolve the issue:

  1. Check React Dependency: Make sure that React is properly imported and available in your project. Ensure that the React library is included in your project’s dependencies and properly configured.
  2. Check Zoom SDK Version: Verify that you are using a compatible version of the Zoom SDK with your React application. Sometimes, certain versions of libraries may not be fully compatible with each other.
  3. Update Zoom SDK: If possible, try updating your Zoom SDK to the latest version. This may include updating any Zoom-related dependencies in your project.
  4. Check Network Connection: The connectSocket function error might be related to network issues. Ensure that your network connection is stable and that there are no firewall issues blocking the connection to Zoom servers.
  5. Console Logging: Add console.log statements in your code to trace where the error is occurring. This can help you identify which part of your code or the Zoom SDK is causing the problem.
  6. Community Forums: Check the Zoom developer forums or community discussions for any known issues or solutions related to the specific error messages you’re encountering. Developers often share their experiences and solutions in such forums.
  7. Contact Zoom Support: If the issue persists and you can’t find a solution, consider reaching out to Zoom support for assistance. They may be able to provide specific guidance or updates on known issues.

Remember to back up your code before making significant changes, and test solutions in a controlled environment to avoid any potential negative impact on your application.

I am experiencing the same issue in my Next.js project.

Same issue, on VueJs

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