Use account credentials to get an access token
Hi, I need to get the access token in order to make further requests to Zoom APIs with S2S app. I started with the request to the following endpoint however, despite I do NOT get an error back, this is the response I encoded the <myClientid>:<myClientsecret> on a online tool and pasted the response Could someone give me some hints about why I get this response backconst resp = await axios.post(
"https://zoom.us/oauth/token?grant_type=account_credentials&account_id=<myAccountId>";,
{},
{
headers: {
Authorization:
"Basic <myclientId>:<myclientSecret>", //both encoded
},
}
);
console.log(resp.data);
#{
status: false,
errorCode: -1,
errorMessage: 'Illegal base64 character 3a',
result: null
}
Show less