Show invalid signature in join time

Web Meeting SDK v2.8.0
Invalid Signature with Sample Web App

I’ve tried again just to be sure and I am still receiving the same error about an invalid signature. This happens for both CDN and Local version of the code.
I’m using version version 2.8.0 of GitHub - zoom/meetingsdk-web-sample: Zoom Meeting SDK Web Sample App

var signature = ZoomMtg.generateSignature({

		meetingNumber: meeting_id,
		apiKey: process.env.MIX_ZOOM_API_KEY,
		apiSecret: process.env.MIX_ZOOM_API_SECRET_KEY,
		role: meeting_role,
		success: function (res) {
		  //console.log(res.result);
		  meetingConfig.signature = res.result;
		  meetingConfig.apiKey = process.env.MIX_ZOOM_API_KEY;

		  var joinUrl = "/joinmeeting?" + testTool.serialize(meetingConfig);
			//console.log(joinUrl);
			//window.open(joinUrl, "_blank");
			window.location.replace(joinUrl);
		},
	});

Please help me for generate Signature ?

if you use the Sample Web App, then creating the signature should not the problem

i assume your app is the problem, is it activated yet?

you should downgrade your app from “Intend to publish: Yes” to “Intend to publish: No”

maybe a moderator in the “App Marketplace” forum can help you out

for testing you can create a new (free) zoom account (with a different email address) and create a new Meeting SDK App.

Important: Make sure you don’t unintentionally select “Intend to publish: Yes” .

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