setTimeout(function(){
request({
headers:{Authorization:'Bearer ' + token,
'Content-type':'application/json'},
uri:'http//www.example.com',
method:'POST',
form:{'campaignid':('example'),
'fields':["name","impressions"],
'group':["tokenid"] }
}, function(err, res) {
if(err){
console.log(err);
}
console.log(res.body);
json = JSON.parse(res.body);
});
}, 1000);
我收到上面的错误。我尝试使用enctype:'application / json'和各种解决方案,似乎没有任何工作。我想知道我可以做些什么来确保以json格式返回响应。