nsolid不支持HTTPS

时间:2015-10-09 14:41:31

标签: node.js nsolid

我正在使用新的NSolid工具,因为我想知道我们是否可以在我工作的公司中使用它。 自去年以来,我们已经有一个nodejs应用程序正在生产中,我们将在不久的将来推出另一个应用程序。

我已经在linux虚拟机中安装了nsolid并尝试使用我们当前发布的应用程序,但是我遇到了从我们的应用程序到其他公司服务的HTTPS请求的问题。

[Error: Protocol "https:" not supported. Expected "http:".] 'Error: Protocol "https:" not supported. Expected "http:". at new ClientRequest (_http_client.js:53:11) at Object.exports.request (http.js:31:10) at Object.exports.request (https.js:163:15)

nsolid不支持https模块吗? 如果是这样的话,是否有支持它的计划?

感谢。

2 个答案:

答案 0 :(得分:3)

似乎与N | Solid无关,当您尝试使用https客户端执行http请求时会发生此错误,我在不同的Node.js版本上重现了此错误(v0.12。 x,v4.x,N | Solid):

⬢  ~  node
> http.get("https://github.com/julianduque", function (res) {})
Error: Protocol "https:" not supported. Expected "http:".
    at new ClientRequest (_http_client.js:53:11)
    at Object.exports.request (http.js:31:10)
    at Object.exports.get (http.js:35:21)
    at repl:1:6
    at REPLServer.defaultEval (repl.js:164:27)
    at bound (domain.js:250:14)
    at REPLServer.runBound [as eval] (domain.js:263:12)
    at REPLServer.<anonymous> (repl.js:392:12)
    at emitOne (events.js:82:20)
    at REPLServer.emit (events.js:169:7)

你是怎么做的?

答案 1 :(得分:2)

似乎 nsolid https 协议没有任何限制。

我正在测试我们的应用程序并发现,禁用我们使用的自定义传出请求(agentkeepalive@0.1.5),错误就消失了。