通过代理语法卷曲

时间:2013-07-23 19:37:59

标签: curl proxy

我不明白如何阅读这种通用语法。我想通过我们的代理请求一个URL,它需要一个特定的主机,端口,用户名和密码。我不知道如何弄清楚协议是什么。 我想通过代理进行卷曲。根据下面的帮助文件,我猜这行应该是:

curl -x [whatever-my-protocol-is://] my-host-which-i-know [:my-port-which-i-know] -U my-username-which-i-know [:my-pass-which-know-know] http://www.google.com

这是对的吗?我如何找出协议?

男人的相关信息:

-x, --proxy [PROTOCOL://]HOST[:PORT] Use proxy on given port
     --proxy-anyauth Pick "any" proxy authentication method (H)
     --proxy-basic   Use Basic authentication on the proxy (H)
     --proxy-digest  Use Digest authentication on the proxy (H)
     --proxy-negotiate Use Negotiate authentication on the proxy (H)
     --proxy-ntlm    Use NTLM authentication on the proxy (H)
 -U, --proxy-user USER[:PASSWORD]  Proxy user and password
     --proxy1.0 HOST[:PORT]  Use HTTP/1.0 proxy on given port

已解决:在阅读一般语法时忽略“[”。此外,Windows喜欢双引号和单引号。所以命令是: curl -x my-host-which-know-know:my-port-which-know-know -U my-username-which-know-know:my-pass-which-know-know http://www.google.com

2 个答案:

答案 0 :(得分:9)

已解决:在阅读一般语法时忽略"["。此外,Windows喜欢双引号和单引号。

所以命令是:

curl -x my-host-which-i-know:my-port-which-i-know -U my-username-which-i-know:my-pass-which-i-know http://www.google.com

答案 1 :(得分:1)

如果您使用域

curl -x proxy:81 -U domain\login:password https://stackoverflow.com/