customer-USERNAME:PASSWORD
-
customer-USERNAME[-parameter-value]...:PASSWORD
cc
cc-US
cc-GB
customer-USERNAME-cc-US:PASSWORD
city
city-London
city-NewYork
sessid
sessid-abcde12345
customer-USERNAME-cc-US-city-NewYork-sessid-abc123:PASSWORD
curl -x proxy.pingnet.org:7777 -U "customer-USERNAME:PASSWORD" https://httpbin.org/ip
import requests proxies = { 'http': 'http://customer-USERNAME:[email protected]:7776', 'https': 'https://customer-USERNAME:[email protected]:7777' } response = requests.get('https://httpbin.org/ip', proxies=proxies) print(response.json())
const axios = require('axios'); const HttpsProxyAgent = require('https-proxy-agent'); const proxyUrl = 'https://customer-USERNAME:[email protected]:7777'; const agent = new HttpsProxyAgent(proxyUrl); axios.get('https://httpbin.org/ip', { httpsAgent: agent }) .then(response => { console.log(response.data); }) .catch(error => { console.error('Error:', error); });
curl -x proxy.pingnet.org:7777 -U "customer-USERNAME-cc-GB:PASSWORD" https://httpbin.org/ip
import requests # Request through UK proxy proxies = { 'http': 'http://customer-USERNAME-cc-GB:[email protected]:7776', 'https': 'https://customer-USERNAME-cc-GB:[email protected]:7777' } response = requests.get('https://httpbin.org/ip', proxies=proxies) print(response.json())
const axios = require('axios'); const HttpsProxyAgent = require('https-proxy-agent'); // Request through German proxy const proxyUrl = 'https://customer-USERNAME-cc-DE:[email protected]:7777'; const agent = new HttpsProxyAgent(proxyUrl); axios.get('https://httpbin.org/ip', { httpsAgent: agent }) .then(response => { console.log(response.data); }) .catch(error => { console.error('Error:', error); });