Node.js - 不支持内容类型'application / x-www-form-urlencoded'

时间:2016-05-10 17:41:00

标签: javascript node.js oauth request content-type

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格式返回响应。

0 个答案:

没有答案