Cloud Server

Host: proxy.heliuscloud.net, Port: 23564

Validation Method

HTTP Tunnel Authorization Mode:

Request Header
Authentication is done in the form of a username/password, which is eventually converted into a 『Proxy-Authorization』 protocol header to be sent with the request.
To facilitate access to some languages, the platform also supports tunneling through the 『Authorization』 header.
CSharp

WebClient client = new WebClient();

WebProxy proxy = new WebProxy("23564:proxy.heliuscloud.net");
        
proxy.Credentials = new NetworkCredential("proxyUser", "password");

client.Proxy = proxy;

client.DownloadString("https://api.ip.sb/geoip");