Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经在我的 Windows7 32 位上安装了 Cygwin 和 curl(通过 cygwin 安装程序)。然后打开 cygwin 终端并输入curl --help. curl 显示其命令参数列表时一切正常。
curl --help
但是curl http://www.google.com或任何其他 url 需要更多时间和结果
curl http://www.google.com
“卷曲:(52)来自服务器的空回复”。问题是什么?
更新:我在代理服务器后面。有什么问题吗?
如果您的代理服务器是上网的唯一途径,那么是的,这就是问题所在。Curl 不太关心您在哪个操作系统下运行,因此不会获取特定于操作系统的代理设置(即:Internet Explorer 选项),因此它会尝试进行直接连接。尝试添加--proxy选项(curl --help将给出格式)。
--proxy