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

Imports System.Net

Module Module1
    Sub Main()
        Console.WriteLine("To enable your free eval account and get " & 
            "CUSTOMER, YOURZONE and YOURPASS, please contact " &
            "sales@fanqie.io")
        Dim Client As New WebClient
        Client.Proxy = New WebProxy("http://proxy.heliuscloud.net:23564")
        Client.Proxy.Credentials = New NetworkCredential("proxyUser", "123456")
        Console.WriteLine(Client.DownloadString("https://api.ip.sb/geoip"))
    End Sub
End Module