Meeting SDK Type and Version
meeting sdk 2.10.1
Description
Can’t launch meeting sdk on my website or locally on the development
Error
status:false,
errorCode:3611,
errorMessage:Unable join from browser, please join using the Zoom desktop client or mobile app,
method: join,
result:null
Which version?
meeting sdk 2.10.1
APP type
Meeting SDK app. not published and I provided all required links
authentication
I’m generating signature with php
same issue in the below link
Hi @srinjoy
Thanks for reaching out to the Zoom Developer Forum! I am happy to help here!
Could you please confirm if you are still experiencing this issue?
Hi Khadija, I’ll PM you to check your JWT token
Meanwhile, could you share the code sample used to generate the token?
// $sdkSercet is Client Secret in my sdk app
$timeNow = time();
$duration = 60*60;
$payload = [
"appKey" => $sdkKey, // client id in my sdk app
"sdkKey" => $sdkKey, // client id in my sdk app
"mn" => $meetingNumber,
"role" => $role, // 1 or 0
"iat" => $timeNow,
"exp" => $timeNow + $duration,
"tokenExp" => $timeNow + $duration,
];
$signature = \Firebase\JWT\JWT::encode($payload, $sdkSercet, 'HS256');
Khadija Nooh:
errorCode:3611,
@developeraya ,
did you have this setting turn on in your zoom account settings?
are you shure, that your variable name “$sdkSercet ” is spelled eyerywhere the same way?
you can check your signature here → https://jwt.io/