linux – 如何通过本地代理允许curl?

linux – 如何通过本地代理允许curl?,第1张

概述根据 Charles Proxy configuration page,如果您将本地主机与端口8080一起使用,则可以手动设置代理. 语法是curl –proxy localhost:8080 http://google.com/ 但是,这对我不起作用.这是我的语法和结果 – 我也使用-v选项进行调试: curl -v --proxy localhost:8080 http://google.co 根据 Charles Proxy configuration page,如果您将本地主机与端口8080一起使用,则可以手动设置代理.

语法是curl –proxy localhost:8080 http://Google.com/

但是,这对我不起作用.这是我的语法和结果 – 我也使用-v选项进行调试:

curl -v --proxy localhost:8080 http://Google.com/* About to connect() to proxy localhost port 8080 (#0)*   Trying 127.0.0.1... Connection refused*   Trying ::1... Connection refused*   Trying fe80::1... Connection refused* Couldn't connect to host* Closing connection #0curl: (7) Couldn't connect to host

我可以在Web浏览器中连接到localhost:8080,并将结果记录在代理中.但是这不起作用,连接被拒绝,没有记录任何内容.

到目前为止,我还尝试过:

- executing this as root- using 127.0.0.1 instead of localhost- using wget instead of curl- disabling the system firewall

我究竟做错了什么?我还能尝试什么?

解决方法 拒绝连接会表明没有任何东西正在侦听端口8080.Charles必须运行(并在端口8080上侦听)curl才能将其用作代理.那或者你有一个防火墙主动阻止该端口,阻止任何连接. 总结

以上是内存溢出为你收集整理的linux – 如何通过本地代理允许curl?全部内容,希望文章能够帮你解决linux – 如何通过本地代理允许curl?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/1033453.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-24
下一篇 2022-05-24

发表评论

登录后才能评论

评论列表(0条)

保存