JWT token is not working in android SDK, getting errorCode 5 and internalErrorCode 124 error

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.

Hi @jovy, thanks for using our SDK.

Can you please confirm how you are including the SDK key & secret in your JWT when it is generated?

Thanks!

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