Description
Hi all,
I’m trying to create an example Android app using Client SDK for Android. I have completed coding and testing for both join a meeting and log in and start meeting. It’s very interesting. However, I’m using the SDK key and SDK secret for this success case. When I try with JWT Token instead, I can’t initialize Zoom SDK successfully because there is an error with errorCode: 3 and internalErrorCode: 124. The JWT token is generated by using jwt.io, follow the instruction https://marketplace.zoom.us/docs/sdk/native-sdks/android/mastering-zoom-sdk/sdk-initialization. The following is one example for generating a JWT token:
Header:
{
“alg”: “HS256”,
“typ”: “JWT”
}
Payload:{
“appKey”: “SDK Key”,
“iat”: 1609426297,
“exp”: 1609429897,
“tokenExp”: 1609429897
}
Verify Signature
HMACSHA256(
base64UrlEncode(header) + “.” +
base64UrlEncode(payload),
SDK Secret
) secret base64 encoded
I need to demo using JWT Token. So, I hope will receive an answer from the support team soon. Thanks!
Which version?
5.2.42043.1112
To Reproduce(If applicable)
Steps to reproduce the behavior:
- Go to ‘…’
- Click on ‘…’
- Scroll down to ‘…’
- See error
Screenshots
If applicable, add screenshots to help explain your problem.
Smartphone (please complete the following information):
- Device: Samsung J7 Pro
- OS: Android 9
- Version [e.g. 22]
Additional context
Add any other context about the problem here.