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

const http = require("http");

const req = http.request({
  port: "23564",
  host: "proxy.heliuscloud.net",  method: "CONNECT",
  auth: "proxyUser:password",
  path: "api.ip.sb",
});

req.on("connect", (res, socket, head) => {
  socket.write(
    `GET /geoip HTTP/1.1

    Host: api.ip.sb

    Connection: close

    
`
  );
  socket.on("end", () => {
    proxy.close();
  });
});

req.end();