I have following code in nodejs, but zapier doesnot support request module. Using fetch or standard http method, can this be implemented in my zap?
request(
{
url: "https://wechat.com/",
auth: {
bearer: accessToken
}
},
function(err, res) {
//do something
}
);