请问如何POST cnode社区的api?
发布于 3 年前 作者 huan1043269994 2680 次浏览 来自 问答
var postData = JSON.stringify({
  'accesstoken': 'xxxx',
})

var options = {
  hostname: 'https://cnodejs.org',
  path: '/api/v1',
  port: 443,
  method: 'POST',
  headers: {
    'Content-Type': 'application/x-www-form-urlencoded',
    'Content-Length': Buffer.byteLength(postData)
  }
  
var req = https.request(options, (res) => {
    console.log(`STATUS: ${res.statusCode}`);
    console.log(`HEADERS: ${JSON.stringify(res.headers)}`);
    res.setEncoding('utf8');
    res.on('data', (chunk) => {
      console.log(`主体: ${chunk}`);
    });
    res.on('end', () => {
      console.log('响应中已无数据');
    })
  })
}```
无响应
6 回复

哎,为什么有这么多人喜欢把Content-Type设为application/x-www-form-urlencoded?JSON的Content-Typeapplication/json

untitled1.png

你没有写具体的请求地址吧 path: ‘/api/v1’,

这和一楼说的Content-Type没有什么关系

我记得有个request类库可以直接请求呀, 没必要写这么多吧

搞请求用superagent呀

@zhanzhenzhen 多谢帮助,诚如你所说和Content-Type有关

@jiangli373 多谢啦,搞定了

回到顶部