curl 代理访问https
时间: 2023-08-09 14:12:12 浏览: 285
基于curl的http协议访问
通过curl命令进行代理访问HTTPS网站可以使用`-x`或`--proxy`参数,并指定代理地址和端口。具体操作如下:
```shell
curl -x socks5://<代理地址>:<代理端口> https://www.example.com
curl -x http://<代理地址>:<代理端口> https://www.example.com
curl -x https://<代理地址>:<代理端口> https://www.example.com
```
其中,`<代理地址>`是代理服务器的地址,`<代理端口>`是代理服务器的端口号。
阅读全文