Making Requests
In this section, we'll show practical examples of using the proxy string we've created. We'll focus on setting up HTTP/HTTPS and SOCKS5 connections, illustrated through examples in various programming languages.
Keep in mind that the ports will differ depending on the protocol (HTTP/SOCKS5).
HTTP/HTTPS
curl -v -x http://username123:[email protected]:12321 -L https://ipv4.icanhazip.com
SOCKS5
curl -v -x socks5://username123:[email protected]:32325 -L https://ipv4.icanhazip.com
Last updated