如何从 Node.js 向需要证书进行身份验证的服务器进行休息调用?
问问题
2637 次
1 回答
3
这是一个使用标准https
模块的示例,直接来自文档:
var options = {
hostname: 'encrypted.google.com',
port: 443,
path: '/',
method: 'GET',
key: fs.readFileSync('test/fixtures/keys/agent2-key.pem'),
cert: fs.readFileSync('test/fixtures/keys/agent2-cert.pem')
};
options.agent = new https.Agent(options);
var req = https.request(options, function(res) {
...
}
如果你使用mikeal 的 requestpool
,你可以在选项中设置自定义代理。
于 2013-10-31T14:40:40.710 回答