Problem with get access token

I had got the authorization code of my own account and I am trying to use it to get access token.

I am sending post request with thunder client:
URL: https://zoom.us/oauth/token
Method: Post
Header:
{
Content-Type: application/x-www-form-urlencoded,
Authorization: Basic Base64Encode(ClientID:ClientSecret)
}
the ClientID and ClientSecret are from my registered app in marketplace.
Body:
{
“code”: authorization code,
“grant_type”: “authorization_code”,
“redirect_uri”: “localhost:8888”
}
When the request been sent, I get status code 200, with:
{
“status”: false,
“errorCode”: -1,
“errorMessage”: “500 Internal Server Error”,
“result”: null
}

there’s another post about 500 internal server error long time ago and seems it’s been fixed at that time. What might be the reason for my problem?

I had made some more trying. it seems will get same respond even with:
Headers:
{
Content-Type:application/x-www-form-urlencoded
}
Body:
{
“grant_type”: “authorization_code”
}

Hope you will be fine.

Please watch the session here about how to get an access token.

For more please connect me (WhatsApp).

Thanks

1 Like

Hi @bobai.ding ,

How you’re accessing the token endpoint is incorrect. Please checkout our public workspace for guidance: Postman

This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.