请求https使侦听器抛出错误NullPointerException

时间:2018-03-28 00:55:43

标签: node.js npm https request

我正在尝试在节点中使用HTTPS模块发出POST request个API请求请求。 这是我的代码:

var request = require('request');
var post_data = {
  text: 'hello'
}

request.post({
  url: 'https://...',
  headers: {'content-type' : 'application/json'},
  body: JSON.stringify(post_data),//also tried form:JSON.stringify(post_data),
  strictSSL: false,
  rejectUnauthorized: false
},
  function (err, httpResponse, body) {
    console.log(err, body);
  });

我得到的回复是一条很长的错误消息,写在html中,呈现如下:

enter image description here

这意味着API服务器无法找到我的请求正文。我该如何解决这个问题?

顺便说一下,这个API与Postman合作进行了测试。

0 个答案:

没有答案