我是Zoho服务的新手。我想在我的Node JS应用程序中使用Zoho API。 该应用程序用Javascript编写。但是我在Zoho REST API文档https://www.zoho.com/crm/help/api/v2/#create-bulk-read-op中找不到Javascript示例。
给出的大多数样本都使用curl命令...
能否请您检查我的问题,并告诉我如何在Node Js应用程序中使用Zoho API?
答案 0 :(得分:2)
使用superagent库(npm i superagent
):
var superagent = require('superagent')
superagent.
post('https://www.zohoapis.com/crm/bulk/v2/read').
set('Authorization', 'Zoho-oauthtoken d92d401c803988c5cb849d0b4215f52').
send({
query: {
module: 'Leads'
},
callback: { //optional
url: 'https://sampledomain.com/getzohoresponse',
method: 'post'
}
}).
end((err, res) => {
console.log(err, res.body)
})