Description
When attempting to initialize and run the fully customizable web SDK, I get an access denied error when trying to load a file from the Zoom Global Service: https://source.zoom.us/1.8.0/lib/js_media.min.js.
I have a valid signature, topic, username and password. I just can’t get access to the global resources.
Error
index.umd.js:1 GET https://source.zoom.us/instantsdk/1.0.0/lib/js_media.min.js net::ERR_ABORTED 403
Which version?
zoom-instant-sdk-web-1.0.0
To Reproduce(If applicable)
Download the zoom-instant-sdk-web-1.0.0 and include it in your project.
Initialize the client and generate a signature following the docs.
Join the session with the .join function:
const client = ZoomInstant.createClient();
client.init(“en-US”, “Global”);
const signature = [your server-side signature call]
client
.join(topic, signature, userName, password)
.then(() => {
console.log(“Successfully joined a session.”);
})
.catch((error) => {
console.error(error);
});
Screenshots
Device (please complete the following information):
Windows 10 Desktop, Chrome 87.0.4280.88