我试图使用hubot msg对象发送http请求,但最终得到此错误: 错误:连接EINVAL 0.0.xx.xx:80 - 本地(0.0.0.0:0)
类似的问题是说这是由hosts文件引起的,但没有详细说明。
答案 0 :(得分:5)
在过去两年中,我多次遇到此问题。在所有情况下,@ Shiva都是这样:协议或端口丢失。
这是同事在Node.js应用程序中使用axios模块遇到的此问题的最新发生:
axios({ method: "get", url: "hostname:8080/liveness" })
在http
之前,它起作用了:
axios({ method: "get", url: "http://hostname:8080/liveness" })