and the output it like jwtToken: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzZGtLZXkiOiJJZXRTdWNlb1RfNnd0elliVzN6bVh3Iiwicm9sZSI6MCwiaWF0IjoxNzI3NjI0MzEzLCJleHAiOjE3Mjc2MzE1MTMsInRva2VuRXhwIjoxNzI3NjMxNTEzfQ.KADTl_Viig-q-1eWcPbY5XaZvdhdHEHmmf7p30egbkA
I know. I’m using MethodChannel to call my Android native code in my Flutter app. I downloaded MobileRTC from the marketplace, and when calling it, it requires a JWT token, but I only have the Client ID and Client Secret. After searching for JWT, I found the method above that takes the Client ID and Client Secret and returns a JWT token. However, when initializing Zoom, I get this error.
iat (Issued At): This represents the time the token was created, given in Unix epoch time (seconds since 1970). It helps validate when the token was generated.
exp (Expiration Time): This is the time when the token will expire. For the Meeting SDK, the exp value should be at least 1800 seconds (30 minutes) greater than the iat value but must not exceed 48 hours from the iat.
tokenExp (Token Expiry): This is the expiration time of the token used in SDK requests. It should follow the same rules as exp, with a minimum of 1800 seconds from iat and a maximum of 48 hours from iat. Typically, the exp and tokenExp values are set to the same time