Description
I would like to resolve the “Fail To Join the Meeting” error.
The following error is occurring.
Uncaught (in promise)
{type: 'JOIN_MEETING_FAILED', reason: 'Fail to join the meeting.', errorCode: 200}
errorCode
:
200
reason
:
"Fail to join the meeting."
type
:
"JOIN_MEETING_FAILED"
Browser Console Error
Additional context
I want to integrate live video of Zoom webinars into my website using the Zoom Meeting SDK in ASP.NET.
<What I’ve tried>
① I obtained the signature of the API server by cloning the following GitHub. I set the ZOOM_SDK_KEY and ZOOM_SDK_SECRET in the .env file.
② Start the API server from ① (http://localhost:4000)
③ I cloned the front part from the following GitHub: GitHub - zoom/meetingsdk-javascript-sample: Use the Zoom Meeting SDK in a JavaScript App
④ In order to use the Component view, I set the component-view.js file as follows:
var signatureEndpoint = 'http://localhost:4000'
var sdkKey = '<SDK_KEY>'
var meetingNumber = '<Meeting Number>'
var role = 0
var userName = ''
var userEmail = ''
var passWord = ''
⑤ The HTML part is as follows:
<%@ page language="VB" autoeventwireup="false" codefile="zoomtest.aspx.vb" inherits="zoomtest" %>
<html>
<head>
<meta charset="utf-8">
<title>Zoom Meeting SDK Sample JavaScript</title>
</head>
<body>
<main>
<h1>Zoom Meeting SDK Sample JavaScript</h1>
<!-- For Component View -->
<div id="meetingSDKElement">
<!-- Zoom Meeting SDK Rendered Here -->
</div>
<button onclick="getSignature()">Join Meeting</button>
</main>
<!-- For Component and Client View -->
<script src="https://source.zoom.us/2.9.7/lib/vendor/react.min.js"></script>
<script src="https://source.zoom.us/2.9.7/lib/vendor/react-dom.min.js"></script>
<script src="https://source.zoom.us/2.9.7/lib/vendor/redux.min.js"></script>
<script src="https://source.zoom.us/2.9.7/lib/vendor/redux-thunk.min.js"></script>
<script src="https://source.zoom.us/2.9.7/lib/vendor/lodash.min.js"></script>
<%-- <!-- For Client View -->
<script src="https://source.zoom.us/zoom-meeting-2.9.7.min.js"></script>
<script type="text/javascript" src="client-view.js"></script>--%>
<!-- For Component View -->
<script src="https://source.zoom.us/2.9.7/zoom-meeting-embedded-2.9.7.min.js"></script>
<script type="text/javascript" src="./js/component-view.js"></script>
</body>
</html>