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.

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