Description
Facing Error Code 63, while joining the meeting using IOS Sample App
Which iOS Meeting SDK version?
v6.0.12.15920
To Reproduce(If applicable)
Steps to reproduce the behavior:
I followed the same process of creating an account in zoom market place. then installed iOS SDK and tried to run the sample app.
JWT token was created by following program
const KJUR = require('jsrsasign')
// https://www.npmjs.com/package/jsrsasign
function generateSignature(key) {
const iat = 1717499384; // current unix timestamp
const exp = iat + 7200;
const tokeExp = iat + 14400;
const oHeader = { alg: 'HS256', typ: 'JWT' }
const oPayload = {
appKey: key,
iat: iat,
exp: exp,
tokenExp: exp
}
const secret = 'client_secret_here'
const sHeader = JSON.stringify(oHeader)
const sPayload = JSON.stringify(oPayload)
const sdkJWT = KJUR.jws.JWS.sign('HS256', sHeader, sPayload, secret)
return sdkJWT;
}
console.log(generateSignature("client_key_here"))
Then I created a zoom invite from the same developer account.
But still the sample app is giving 63 error code.
Smartphone (please complete the following information):
- Device: iPhone 14, Simulator
- OS: iOS 14
Additional context