Continent
To get a proxy from any of the seven continents, add the continent- parameter and two-letter code to the authorization string.
The list of continents and corresponding letter codes to chose from:
continent-af for Africa
continent-an for Antarctica
continent-as for Asia
continent-eu for Europe
continent-na for North America
continent-oc for Oceania
continent-sa for South America
Code example
In this example, a query to ipinfo.thordata.com is performed from a random IP address from Asia:
curl -x "https://td-customer-USERNAME-continent-as:[email protected]:5555" "https://ipinfo.thordata.com"using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Text;
using System.Threading.Tasks;
class csharp_http
{
static void Main(string[] args)
{
Task t = new Task(DownloadPageAsync);
t.Start();
Console.ReadLine();
}
static async void DownloadPageAsync()
{
string page = "https://ipinfo.thordata.com";
var proxy = new WebProxy("http://t.na.thordata.net:5555")
{
UseDefaultCredentials = false,
Credentials = new NetworkCredential(
userName: "td-customer-USERNAME-continent-as",
password: "PASSWORD")
};
var httpClientHandler = new HttpClientHandler()
{
Proxy = proxy,
};
var client = new HttpClient(handler: httpClientHandler, disposeHandler: true);
var response = await client.GetAsync(page);
using (HttpContent content = response.Content)
{
string result = await content.ReadAsStringAsync();
Console.WriteLine(result);
Console.WriteLine("Press any key to exit.");
Console.ReadKey();
}
}
}Last updated
Was this helpful?