北漂IT民工 的博客

nodejs发送HTTS请求

nodejs的https请求如何不加以配置会出来很多错误。

下面是经过测试的一段nodejs发送HTTPS请求的代码,主要是要注意Options里的几个参数的内容。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
var data = {

};

var options = {

host: serverHost,

port: serverPort,

method: 'POST',

path: "/",

headers: {

},

rejectUnauthorized: false,

requestCert: true,

agent: false,

secureProtocol: 'SSLv3_method'

};

var https = require('https');

var req = https.request(options, function (res) {

console.log("init request");

console.log(res.statusCode);

res.on('data', function (data) {

try {

console.log(data);

} catch(e) {

console.log(e)

}

});

});

req.write(JSON.stringify(data));

req.end();

req.on('error', function (e) {

console.error(e);

});