根据
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
我可以在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才能将其用作代理.那或者你有一个防火墙主动阻止该端口,阻止任何连接.