Hi there,
I am trying to use Postman to test the Zoom API. Since Zoom can only create one JWT app per account, I believe it will be better to use OAuth app to test instead, so that if there are other developers who wanna test it, they can create their own tokens.
Then I try to follow the guide here.
https://marketplace.zoom.us/docs/api-reference/using-zoom-apis
To be specific, the “Authorization Code” section.
I can successfully retrieve the authorization code, but failed to create the token using the following CURL. Please help
curl --location --request POST ‘https://api.zoom.us/v2/oauth/token?grant_type=authorization_code&code=<authorization_code_received_from_redirect_url>&redirect_uri=https://<blah_blah>’
–header ‘Authorization: Basic <app_client_id:app_client_secret_in_base64>’
Request returned 401
{
“code”: 124,
“message”: “Invalid access token.”
}