I am trying to install zoom SDK inside my android app. I have generated JWT token and cloned android SDK repository. But my issue is when ever I try to initialling SDK, I’m getting error
onZoomSDKInitializeResult, errorCode=5, internalErrorCode=124
here is how i generated JWT,
header
{
“alg”: “HS256”,
“typ”: “JWT”
}
payload
{
“appKey”: “”,
“iat”: 1639475367, //creation date was 14th Dec 21
“exp”: 1639560739, //expiry i set was 15th Dec 21
“tokenExp”: 1639521139 // 15th Dec 21
}
signature
HMACSHA256(
base64UrlEncode(header) + “.” +
base64UrlEncode(payload),
)
please help me on this.