List of client's IPs
To view list of IPs client has:
curl https://username:[email protected]/ip-listnpm install axios// ip_list.js
const axios = require('axios');
(async () => {
try {
const res = await axios.get('https://hosting.goproxies.com/ip-list', {
auth: { username: 'username', password: 'password' },
timeout: 10000
});
console.log('status:', res.status);
console.log('body:', res.data);
} catch (err) {
console.error('request error:', err.message);
if (err.response) console.error('status code:', err.response.status);
}
})();# ip_list.py
import requests
username = "username"
password = "password"
resp = requests.get("https://hosting.goproxies.com/ip-list", auth=(username, password), timeout=10)
print(resp.status_code)
print(resp.text)Last updated
Was this helpful?

