Zoom API Oauth | Error: unsupported_grant_type
When making request to get Access Token, I'm always getting unsupported_grant_type Error. Please help me to know where I'm going wrong.. Code: Logs: axios.post(
"https://zoom.us/oauth/token",
{
grant_type:'authorization_code',
code: req.query['code'],
redirect_uri: '<RedirectUri>'
},{
headers:{
Authorization: 'Basic ' + Buffer.from('<CLIENT_ID>' + ':' +
'<CLIENT_SECRET>').toString('base64'),
'Content-Type': 'application/x-www-form-urlencoded',
}
}).then((rs:any)=>{
console.log(rs);
})
.catch((err:any)=>{console.log(err);})
data: {
reason: 'unsupported grant type',
error: 'unsupported_grant_type'
}
Show less