I am using “https://zoom.us/oauth/token” api to get access token using postman
I am passing below parameters in query string
- code={oauth-code generated}
- grant_type=authorization_code
3)redirect_uri={myapp url}
I am passing below header variable
- Content-Type=application/x-www-form-urlencoded
Authorization:
Type=Basic
UserName=Client_Id
Password=Client_Secret
I am getting below JSON response
{
“reason”: “Invalid authorization code”,
“error”: “invalid_grant”
}
What might be causing “Invalid Authorization Code” ?