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.
Perl

use LWP::UserAgent;
use HTTP::Request::Common;

$useragent = LWP::UserAgent->new();$useragent->proxy("http","http://proxy.heliuscloud.net:23564"); 
$useragent->env_proxy;
$useragent->authorization_basic('proxyUser', 'password');
$request = HTTP::Request->new(GET=>"https://api.ip.sb/geoip");
$response = $useragent->request($request);