根据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 #0
curl: (7) couldn't connect to host
我可以在网络浏览器中连接到localhost:8080,并将结果记录在代理中。但是这不起作用,连接被拒绝,没有记录任何内容。
到目前为止,我还尝试过:
- executing this as root
- using 127.0.0.1 instead of localhost
- using wget instead of curl
- disabling the system firewall
我做错了什么?我还能尝试什么?
答案 0 :(得分:18)
我使用端口8888取得了一些成功:
curl http://www.google.com --proxy 127.0.0.1:8888
答案 1 :(得分:3)
拒绝连接会表明没有任何东西正在侦听端口8080.Charles必须运行(并在端口8080上侦听)才能将curl用作代理。那个或者你有一个防火墙主动阻止该端口,防止任何连接。