To get a proxy from any of the seven continents, add the cn-
parameter and two-letter code to the authorization string.
The list of continents and corresponding letter codes to chose from:
cn-AF
for Africa
cn-AN
for Antarctica
cn-AS
for Asia
cn-EU
for Europe
cn-NA
for North America
cn-OC
for Oceania
cn-SA
for South America
Code example
In this example, a query to ip.oxylabs.io/location
is performed from a random IP address from Asia:
cURL PHP Python Java C# Ruby
Copy curl -x pr.oxylabs.io:7777 -U "customer-USERNAME-cn-AS:PASSWORD" https://ip.oxylabs.io/location
Copy <? php
$username = 'USERNAME' ;
$password = 'PASSWORD' ;
$continent = 'AS' ;
$proxy = 'pr.oxylabs.io:7777' ;
$query = curl_init ( 'https://ip.oxylabs.io/location' ) ;
curl_setopt ( $query , CURLOPT_RETURNTRANSFER , 1 ) ;
curl_setopt ( $query , CURLOPT_PROXY , "http://$proxy" ) ;
curl_setopt ( $query , CURLOPT_PROXYUSERPWD , "customer-$username-cn-$continent:$password" ) ;
$output = curl_exec ( $query ) ;
curl_close ( $query ) ;
if ($output)
echo $output;
?>
Copy import urllib . request
import random
username = 'USERNAME'
password = 'PASSWORD'
continent = 'AS'
entry = ( 'http://customer- %s -cn- %s : %s @pr.oxylabs.io:7777' %
(username , continent , password))
query = urllib . request . ProxyHandler ({
'http' : entry,
'https' : entry,
})
execute = urllib . request . build_opener (query)
print (execute. open ( 'https://ip.oxylabs.io/location' ). read ())
Copy package example ;
import org . apache . http . HttpHost ;
import org . apache . http . client . fluent . * ;
public class Example {
public static void main ( String [] args) throws Exception {
HttpHost entry = new HttpHost( "pr.oxylabs.io" , 7777 ) ;
String query = Executor . newInstance ()
. auth (entry , "customer-USERNAME-cn-AS" , "PASS" )
. execute ( Request . Get ( "http://ip.oxylabs.io/location" ) . viaProxy (entry))
. returnContent () . asString ();
System . out . println (query);
}
}
Copy using System ;
using System . Net ;
class Example
{
static void Main ()
{
var client = new WebClient ();
client . Proxy = new WebProxy ( "pr.oxylabs.io:7777" );
client . Proxy . Credentials = new NetworkCredential ( "customer-USERNAME-cn-AS" , "PASSWORD" );
Console . WriteLine ( client . DownloadString ( "https://ip.oxylabs.io/location" ));
}
}
Copy require 'uri'
require 'net/http'
uri = URI . parse( 'https://ip.oxylabs.io/location' )
proxy = Net :: HTTP :: Proxy ( 'pr.oxylabs.io' , 7777 , 'customer-USERNAME-cn-AS' , 'PASSWORD' )
req = Net :: HTTP :: Get . new (uri . path)
result = proxy . start(uri . host , uri . port) do | http |
http . request(req)
end
puts result . body
Last updated 6 months ago