IP | Country | PORT | ADDED |
---|---|---|---|
128.140.113.110 | de | 5153 | 18 seconds ago |
146.70.164.210 | ro | 1080 | 18 seconds ago |
154.16.146.47 | us | 80 | 18 seconds ago |
198.199.86.11 | us | 3128 | 18 seconds ago |
139.59.1.14 | in | 8080 | 18 seconds ago |
39.191.223.109 | cn | 4096 | 18 seconds ago |
190.58.248.86 | tt | 80 | 19 seconds ago |
194.219.134.234 | gr | 80 | 19 seconds ago |
189.202.188.149 | mx | 80 | 19 seconds ago |
103.49.114.195 | bd | 8080 | 19 seconds ago |
213.143.113.82 | at | 80 | 19 seconds ago |
194.158.203.14 | by | 80 | 19 seconds ago |
62.99.138.162 | at | 80 | 19 seconds ago |
79.110.201.235 | pl | 8081 | 19 seconds ago |
41.230.216.70 | tn | 80 | 19 seconds ago |
103.216.49.233 | kh | 8080 | 19 seconds ago |
203.95.198.35 | kh | 8080 | 19 seconds ago |
203.19.38.114 | cn | 1080 | 19 seconds ago |
103.118.46.61 | kh | 8080 | 19 seconds ago |
79.110.200.148 | pl | 8081 | 19 seconds 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
Open "Options" and then, under "Network", click on "Network Proxy". Now enter in the appropriate fields the IP address of the proxy and its port, based on the type of your proxy: HTTP/HTTPS or SOCKS. In case you suddenly need authorization, enter the authorization data in the appropriate field of the IP address.
Chromium does not support proxies in-house. There is a corresponding item in the menu, but clicking on it will open the regular proxy server settings in Windows or MacOS.
In Swift 4 and later, the Decodable protocol provides a convenient way to parse JSON data into Swift objects. Here's an example demonstrating how to use the Decodable protocol to parse JSON in Swift:
Assuming you have the following JSON data:
{
"name": "John Doe",
"age": 30,
"city": "New York"
}
And you want to create a Swift struct to represent this data:
import Foundation
// Define a struct conforming to Decodable
struct Person: Decodable {
let name: String
let age: Int
let city: String
}
// JSON data
let jsonData = """
{
"name": "John Doe",
"age": 30,
"city": "New York"
}
""".data(using: .utf8)!
// Use JSONDecoder to decode JSON data into a Person object
do {
let person = try JSONDecoder().decode(Person.self, from: jsonData)
print("Name: \(person.name)")
print("Age: \(person.age)")
print("City: \(person.city)")
} catch {
print("Error decoding JSON: \(error)")
}
In this example:
Person
struct that conforms to the Decodable
protocol. The struct's properties match the keys in the JSON data.Data
using data(using:)
.JSONDecoder
to decode the JSON data into an instance of the Person
struct.Ensure that the keys in your Swift struct match the keys in your JSON data, and the data types match accordingly. The JSONDecoder
automatically maps the JSON data to the struct based on the property names.
This example assumes a simple JSON structure. If your JSON structure is more complex, you may need to define additional structs conforming to Decodable
to represent nested structures.
On the PC you can use SOCKS5 proxies, for example, through the browser Firefox. There are such a function in the settings, you just need to activate it. The only nuance: the connection speed or ping indicators in this case may be slowed down.
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.
What else…