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 geo.iproyal.com:12321:username123:password321_country-us_state-california -L https://ipv4.icanhazip.com

SOCKS5

curl -v --socks5 geo.iproyal.com:32325 --proxy-user username123:password321_country-us_state-california -L https://ipv4.icanhazip.com

Last updated