IP | Country | PORT | ADDED |
---|---|---|---|
103.118.47.243 | kh | 8080 | 2 minutes ago |
51.75.126.150 | fr | 9676 | 2 minutes ago |
64.202.184.249 | us | 18087 | 2 minutes ago |
24.249.199.4 | us | 4145 | 2 minutes ago |
103.118.46.176 | kh | 8080 | 2 minutes ago |
128.199.202.122 | sg | 3128 | 2 minutes ago |
103.63.190.72 | kh | 8080 | 2 minutes ago |
188.191.165.159 | ru | 8080 | 2 minutes ago |
139.59.1.14 | in | 3128 | 2 minutes ago |
185.132.242.212 | ru | 8083 | 2 minutes ago |
183.109.79.187 | kr | 80 | 2 minutes ago |
203.99.240.182 | jp | 80 | 2 minutes ago |
188.0.154.254 | kz | 8080 | 2 minutes ago |
80.120.49.242 | at | 80 | 2 minutes ago |
62.99.138.162 | at | 80 | 2 minutes ago |
23.247.136.254 | sg | 80 | 2 minutes ago |
178.177.54.157 | ru | 8080 | 2 minutes ago |
213.157.6.50 | de | 80 | 2 minutes ago |
79.110.200.27 | pl | 8000 | 2 minutes ago |
203.19.38.114 | cn | 1080 | 2 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
It is necessary to go to "Settings", select "WiFi", then specify the network for which you want to disable the proxy. After that, tap on "Proxy settings" and check "Off". This option is valid for iOS version 10 and higher.
To check a proxy for blacklisting, it is necessary to use special tools developed for this purpose. Many proxy-checkers provide free online IP-address verification and provide detailed information related to the proxy servers security. To get it, just enter the IP address of the proxy and click on the "Verify" button.
If you plan to use a proxy every day, it is recommended to pay attention to paid services. There, the connection is as reliable as possible, with no bandwidth limitations. However, the performance of numerous free proxies is not guaranteed.
The easiest way to do this is to use online proxy checking services. For example, Hidemy Name. It is free, displays technical data about the connection, and at the same time it also checks the ping.
In PHP, you can generate JSON data using the json_encode function, and in Swift (iOS/macOS), you can parse it using JSONSerialization or Codable depending on your needs.
Here's an example of generating JSON in PHP and parsing it using NSJSONSerialization in Swift
PHP (Generate JSON):
'John Doe',
'age' => 25,
'city' => 'New York',
'is_student' => true
);
// Encode data to JSON
$jsonData = json_encode($data);
// Output JSON
echo $jsonData;
?>
In this PHP script, the json_encode function is used to convert the PHP associative array into a JSON string.
Swift (Parse JSON using NSJSONSerialization):
import Foundation
// Sample JSON data as a string
let jsonString = """
{
"name": "John Doe",
"age": 25,
"city": "New York",
"is_student": true
}
"""
// Convert JSON string to Data
if let jsonData = jsonString.data(using: .utf8) {
do {
// Parse JSON data using NSJSONSerialization
if let jsonObject = try JSONSerialization.jsonObject(with: jsonData, options: []) as? [String: Any] {
// Access parsed JSON data
let name = jsonObject["name"] as? String ?? ""
let age = jsonObject["age"] as? Int ?? 0
let city = jsonObject["city"] as? String ?? ""
let isStudent = jsonObject["is_student"] as? Bool ?? false
// Print parsed data
print("Name: \(name)")
print("Age: \(age)")
print("City: \(city)")
print("Is Student: \(isStudent)")
}
} catch {
print("Error parsing JSON: \(error.localizedDescription)")
}
}
In this Swift code, the JSONSerialization class is used to parse the JSON string (converted to Data) into a Swift dictionary ([String: Any]). You can then access individual values from the parsed JSON data.
Note: Ensure that the JSON structure in your PHP script and Swift code aligns, and handle errors appropriately during parsing. Additionally, consider using Codable in Swift for a more convenient way to work with JSON data if your data structure matches your Swift model.
What else…