通过代理语法卷曲

Pro*_*OXO 5 proxy curl

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

curl -x [whatever-my-protocol-is://] my-host-which-know-know [:my-port-which-i-know] -U my-username-which-know-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
Run Code Online (Sandbox Code Playgroud)

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

Pro*_*OXO 10

求助:"["在阅读一般语法时忽略.此外,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