Following the guide at https://www.zoho.com/crm/
and I make the following request with `axios` via nodejs:
{
url: 'https://accounts.zoho.com/
method: 'POST',
data: {
client_id: '1000.
client_secret: '
grant_type: 'authtooauth',
authtoken: '1000.
scope: 'ZohoCRM.modules.ALL,ZohoCRM.
soid: 'ZohoCRM.763993401'
},
headers: {}
}
However, no matter what `data` props I pass, I get the following result:
{ error: 'invalid_response_type' }
The only mention of this error online is https://help.zoho.com/
and that was posted 6 months ago with no response.
What should I do? I need to write server-to-server code to keep my company's data in sync with Zoho - not user-OAuth flow, but server-to-server. The docs only have this (https://www.zoho.com/crm/
So...how do I do server-to-server auth -- or -- what am I doing wrong above?