IP | Country | PORT | ADDED |
---|---|---|---|
122.116.125.115 | 8888 | 28 minutes ago | |
101.71.72.250 | cn | 52300 | 28 minutes ago |
79.110.200.148 | pl | 8081 | 28 minutes ago |
101.71.72.253 | cn | 52300 | 28 minutes ago |
185.93.89.187 | ir | 9332 | 28 minutes ago |
185.93.89.147 | ir | 22468 | 28 minutes ago |
211.128.96.206 | 80 | 28 minutes ago | |
67.201.33.10 | us | 25283 | 28 minutes ago |
162.223.90.150 | us | 80 | 28 minutes ago |
103.118.46.176 | kh | 8080 | 28 minutes ago |
190.58.248.86 | tt | 80 | 28 minutes ago |
49.207.36.81 | in | 80 | 28 minutes ago |
103.118.46.64 | kh | 8080 | 28 minutes ago |
59.53.80.122 | cn | 10024 | 28 minutes ago |
79.110.201.235 | pl | 8081 | 28 minutes ago |
213.143.113.82 | at | 80 | 28 minutes ago |
119.3.113.150 | cn | 9094 | 28 minutes ago |
85.215.64.49 | de | 80 | 28 minutes ago |
203.99.240.182 | jp | 80 | 28 minutes ago |
123.30.154.171 | vn | 7777 | 28 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
One way to bypass parsing protection is to use a proxy server. After all, collecting information is most often done through special software. And it can be automatically blocked. But not when a proxy or VPN is used.
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.
It means a proxy that has no access to the Internet. It is created using special software on the user's computer. Most often it is used to check the performance of the created site or web-application.
The first thing you need to do to use a proxy in your browser is to make the necessary settings. In Google Chrome browser, go to "Network" and then find and click on "Change proxy settings". In the "Internet properties" window that opens, go to "Connection" and click on the "Network settings" button at the bottom. When a new window opens, check the "Use proxy server for local connections" box and the "Do not use proxy server for local addresses" box. Enter the proxy port and IP address in the corresponding fields, close the window and click "OK".
It depends on which browser you are using. In Opera, Chrome, Edge a proxy is configured at the level of the operating system itself. In Firefox in the settings there is a special item (in the "Privacy" section).
What else…