IP | Country | PORT | ADDED |
---|---|---|---|
103.216.50.223 | kh | 8080 | 41 minutes ago |
158.255.77.169 | ae | 80 | 41 minutes ago |
217.218.242.75 | ir | 5678 | 41 minutes ago |
119.3.113.151 | cn | 9094 | 41 minutes ago |
185.49.31.207 | pl | 8081 | 41 minutes ago |
220.167.89.46 | cn | 1080 | 41 minutes ago |
95.66.138.21 | ru | 8880 | 41 minutes ago |
203.99.240.182 | jp | 80 | 41 minutes ago |
194.158.203.14 | by | 80 | 41 minutes ago |
62.99.138.162 | at | 80 | 41 minutes ago |
212.127.95.235 | pl | 8081 | 41 minutes ago |
41.230.216.70 | tn | 80 | 41 minutes ago |
119.3.113.152 | cn | 9094 | 41 minutes ago |
213.157.6.50 | de | 80 | 41 minutes ago |
83.1.176.118 | pl | 80 | 41 minutes ago |
80.120.49.242 | at | 80 | 41 minutes ago |
185.59.100.55 | de | 1080 | 41 minutes ago |
221.231.13.198 | cn | 1080 | 41 minutes ago |
213.33.126.130 | at | 80 | 41 minutes ago |
91.122.176.71 | ru | 1080 | 41 minutes ago |
Our proxies work perfectly with all popular tools for web scraping, automation, and anti-detect browsers. Load your proxies into your favorite software or use them in your scripts in just seconds:
Connection formats you know and trust: IP:port or IP:port@login:password.
Any programming language: Python, JavaScript, PHP, Java, and more.
Top automation and scraping tools: Scrapy, Selenium, Puppeteer, ZennoPoster, BAS, and many others.
Anti-detect browsers: Multilogin, GoLogin, Dolphin, AdsPower, and other popular solutions.
Looking for full automation and proxy management?
Take advantage of our user-friendly PapaProxy API: purchase proxies, renew plans, update IP lists, manage IP bindings, and export ready-to-use lists — all in just a few clicks, no hassle.
PapaProxy offers the simplicity and flexibility that both beginners and experienced developers will appreciate.
And 500+ more tools and coding languages to explore
Most users use A-Parser for this purpose. It is one of the best applications for checking web applications. There is a corresponding tab, "Proxy server", in the standard menu of A-Parser. It is where you can specify the settings for the connection. And in the "Tools" section you can use parameters for parsing.
In JavaScript with Selenium, you can save and reuse cookies using the WebDriver's manage().getCookies() and manage().addCookie() methods. Here's a simple example:
const { Builder } = require('selenium-webdriver');
const firefox = require('selenium-webdriver/firefox');
// Create a new instance of the Firefox driver
const driver = new Builder()
.forBrowser('firefox')
.setFirefoxOptions(new firefox.Options().headless())
.build();
// Navigate to a webpage
async function navigateToPage() {
await driver.get('https://example.com');
}
// Save cookies
async function saveCookies() {
const cookies = await driver.manage().getCookies();
// Save the cookies to a file or some storage mechanism
// For simplicity, we'll just print them here
console.log('Cookies:', cookies);
}
// Reuse cookies
async function reuseCookies(savedCookies) {
// Delete existing cookies
await driver.manage().deleteAllCookies();
// Add the saved cookies to the browser session
for (const cookie of savedCookies) {
await driver.manage().addCookie(cookie);
}
// Navigate to a page to apply the cookies
await navigateToPage();
}
// Example usage
(async () => {
await navigateToPage(); // Navigate to the page and set some initial cookies
await saveCookies(); // Save the cookies
// Close and reopen the browser or navigate to a different page
// ...
// Reuse the saved cookies
await reuseCookies(savedCookies);
})();
The navigateToPage function navigates to a webpage and sets some initial cookies.
The saveCookies function retrieves the current cookies using manage().getCookies() and prints them. You would typically save them to a file or some storage mechanism.
The reuseCookies function deletes existing cookies, then adds the saved cookies back to the browser session using manage().addCookie(). It then navigates to a page to apply the cookies.
The example usage section demonstrates how to use these functions in a sequence.
There are several options for its use: bypassing the blocking of websites, shopping in foreign online stores at regional (local) prices, access to a full library of media content, hiding your real IP-address.
In Key Collector settings, the user can specify parameters of the proxy server through which the program will connect to the network. In the application window, first select "Settings", then go to the "Network" tab and check "Use proxy". Its parameters can be set either manually or through a configuration file.
There are 2 ways to do this. The first is to manually change the settings in /etc/environment, but you will definitely need root access to do that. You can also use the Network Manager utility (compatible with all common DEs). You just have to make sure beforehand that the driver for the network adapter to work properly is installed on the system.
What else…