
Hands-on teaching you how to find the Dragon Agent official website entrance
A lot of partners for the first time with the proxy IP is easy to get lost, here to give you a focus: directly in the browser address bar to knock theipipgo.com(Be careful not to enter a fake name like ipigogo or ippgo.) Recognize the "Product Center" button on the top navigation bar. If you can't find the entrance, you're probably on a phishing site - we use a dark green gradient logo and a 24-hour hovering customer service window in the bottom right corner of the page.
There is a pitfall to avoid when registering:Don't register with a temporary email addressI've seen a lot of cases where I couldn't get the activation link in my email for 10 minutes! I've seen many cases in which I couldn't receive the activation link in 10 minutes, and finally had to find customer service to reset it. Recommended to use penguin mailbox or 163, measured seconds to receive the verification code. After registration, remember to go to the personal center to doreal name verificationOtherwise, you can't use the API to extract the functionality.
Three minutes to understand how to choose the package
Choosing a set menu is like choosing the base of a hot pot, it depends on what you want to shabu-shabu:
| business scenario | Recommended Packages |
|---|---|
| Data collection/crawling | Dynamic residential (standard) |
| Account Registration / Game Multi-Open | Static homes |
| Enterprise-class data cleansing | Dynamic Residential (Business) |
Here's a cold one:Dynamic packages do not clear traffic at the end of the month! For example, if you buy 100GB and don't use it up, you can still build it next month. But be aware that static IP is a monthly fixed charge, suitable for scenarios that require long-term stable IP.
API Extraction Hands-on Teaching
Focusing on how to extract proxies in code, here's a Python example:
import requests
Replace with your own API key
api_key = "your own key"
url = f "https://api.ipipgo.com/get?key={api_key}&count=5"
response = requests.get(url)
proxies = response.json()['data']
Getting the list of proxies looks like this
[{"ip": "1.1.1.1", "port":8000, "expire_time": "2024-03-01 12:00:00"},...]
Watch this.expire_timefield, it is recommended to change the IP 10 minutes in advance. have encountered cases where people have used the IP until it expired, resulting in a sudden business interruption.
Client Side Pit Avoidance Guide
Both computer and mobile are supported, but there is something to be said for different systems:
1. Windows users remember to turn offSystem agent auto-detection(Settings → Network → Proxy)
2. For Mac users, if you can't connect, try typing in the terminalsudo killall -HUP mDNSResponder
3. Androids need to be added manuallyAPN Proxy SettingsDon't set it up directly in the app
There's a tawdry operation:Putting a client on an old phone as a hotspotThis way all devices connected to this hotspot can use the proxy, suitable for scenarios that require multiple devices to work at the same time.
QA First Aid Kit
Q:Connected to the agent but can't get on the Internet?
A: First check if the IP:Port is correct, then use theping 1.1.1.1Measure network latency. If the packet loss rate exceeds 20%, it is recommended to change the geographic node.
Q: What should I do if my IP is suddenly blocked?
A: Dynamic package users directly change the new IP on the line, static users to contact customer service!Manual replacement. It is recommended to prepare 10% of spare IPs during peak business hours.
Q: Abnormally fast traffic consumption?
A: Eighty percent of the program did not go to the agent! Add a detection logic in the code:
import requests
resp = requests.get('https://api.ipipgo.com/checkip', proxies=proxies)
print(f "Current exit IP: {resp.text}")
Tips for Advanced Players
Need to customize the program can be directly to the technical customer service, report the code word!"The Green Dragon Goes to Sea"Being able to plug in and handle it (I don't tell the average person). Had a customer who customizedFinancial level agent programThe special requirement of going to a different country's bank IP for each request has to be configured with an appointment 3 days in advance.
Final note: Don't write API keys in your code! I've seen people upload their keys to GitHub and end up with 500GB of stolen traffic. It's recommended to store the key in an environment variable, or use theKey Rotationfeature that automatically updates the key every month.

