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

proxyURL, _ := url.Parse("http://proxy.heliuscloud.net:23564")

client := &http.Client{Transport: &http.Transport{Proxy: http.ProxyURL(proxyUrl)}}
        
req, _ := http.NewRequest("GET", "https://api.ip.sb/geoip", nil)
        
req.SetBasicAuth("proxyUser", "password")
        
resp, _ := client.Do(req)