Description
Receive {"reason":"Internal Error","error":"invalid_request"}
, when attempting to refresh_token.
Error
{"reason":"Internal Error","error":"invalid_request"}
Which App Type (OAuth / Chatbot / JWT / Webhook)?
OAuth
Which Endpoint/s?
https://zoom.us/oauth/token?grant_type=refresh_token&refresh_token={MY_LAST_TOKEN}
How To Reproduce (If applicable)
curl -X POST -H "Authorization: Basic {BASE64(CLIENT_ID:CLIENT_SECRET)}" https://zoom.us/oauth/token?grant_type=refresh_token&refresh_token={MY_LAST_TOKEN}
Screenshots (If applicable)
N.A.
Additional context
- I’m the only one using this token, no one else would be able to refresh my token.
- If the token is invalid, I’m expecting something like
invalid token
, since I’m receivingInternal Error
, Can I assume the token is correct?