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.
Rust
#![deny(warnings)]
// This is using the `tokio` runtime. You'll need the following dependency:
//
// `tokio = { version = "0.2", features = ["macros"] }`

async fn main() -> Result<(), reqwest::Error> {
    let res = reqwest::Client::builder()
    .proxy(
       reqwest::Proxy::http("http://proxy.heliuscloud.net:23564")        
        .unwrap()
        .basic_auth("proxyUser", "password"),
    )
    .build()
    .unwrap()
    .get("https://api.ip.sb/geoip")
    .send()
    .await

    let body = res.text().await?;

    println!(body);
}