Description
We follow the link to create JWT app, generate API key/secret, and generated 1 week token for testing
But it always said {“code”: 124, “message”: “Invalid access token.”}
How To Reproduce (If applicable)
using sample c# code as below, get same error
var dclient = new RestClient("https://api.zoom.us/v2/users?status=active&page_size=30&page_number=1");
var request = new RestRequest(Method.GET);
request.AddHeader("content-type", "application/json");
request.AddHeader("authorization", $"Bearer {token}");
IRestResponse response = dclient.Execute(request);
Screenshots (If applicable)
If applicable, add screenshots to help explain your problem.
Additional context
Add any other context about the problem here.
Hello Tommy,
I try to reactivate my JWT app but I still got the Access token is expired error so I can’t use the app for integrate my Moodle via Zoom API (not LTI).
When I try to change the token Expiration Time it’s do nothing and still got the error of Access token is expired.