Skip to content

Getting Started

Welcome to AdminCloud proxy services! This guide will help you quickly get started with our dynamic residential IP service.

Step 1: Register Account

Visit AdminCloud Member Center to register an account and log in.

Step 2: Get Proxy Information

After logging in, get the following from the "Integration Examples" page:

  • Username (format: myuser)
  • Proxy password
  • Available port information

Step 3: Configure Proxy

HTTP Proxy Configuration

bash
curl -x gtx.paopaous.net:38082 \
  --proxy-user "myuser:password-ip:acpsres-c:US" \
  -L https://httpbin.org/ip

SOCKS5 Proxy Configuration

bash
curl -x "socks5h://myuser:password-ip:acpsres-c:US@gtx.paopaous.net:38082" \
  -L https://httpbin.org/ip

Python Quick Example

python
import requests

# Proxy configuration
proxies = {
    "http": "http://myuser:password-ip:acpsres-c:US@gtx.paopaous.net:38082",
    "https": "http://myuser:password-ip:acpsres-c:US@gtx.paopaous.net:38082"
}

# Send request
response = requests.get("https://httpbin.org/ip", proxies=proxies)
print(f"Your proxy IP: {response.json()}")

Node.js Quick Example

javascript
const axios = require('axios');
const { HttpsProxyAgent } = require('https-proxy-agent');

// Proxy configuration
const proxyUrl = 'http://myuser:password-ip:acpsres-c:US@gtx.paopaous.net:38082';
const httpsAgent = new HttpsProxyAgent(proxyUrl);

// Send request
axios.get('https://httpbin.org/ip', { httpsAgent })
  .then(response => console.log('Your proxy IP:', response.data))
  .catch(error => console.error('Error:', error.message));

Step 4: Start Using

Once configured, you can start using AdminCloud proxy services!

Parameter Description

Key-Value PairDescriptionExampleRequired
myuser:passwordUsername and passwordjohn_doe:abc123
ip:acpsresProduct type identifierip:acpsres, ip:acpsstatic, ip:acpsdc
c:USCountry codec:US, c:UK, c:JP
id:12345Session ID (optional)id:any_string

Product Types

Type IdentifierDescriptionUse Case
acpsresACPS Dynamic Residential IPWeb scraping, data collection
acpsstaticACPS Static Residential IPScenarios requiring fixed IP
acpsdcACPS Datacenter IPHigh performance, low cost

Supported Countries

RegionCountry CodesRegionCountry Codes
North AmericaUS, CAEuropeGB, DE, FR, IT, ES, NL
AsiaJP, KR, SG, HK, TWOthersAU, BR, IN

Next Steps

Frequently Asked Questions

Q: How to switch countries?

A: Modify the country code in your username, e.g., change c:US to c:UK, c:JP, etc.

Q: Which protocols are supported?

A: HTTP, HTTPS, and SOCKS5 protocols are supported.

Q: How to keep the IP unchanged?

A: Add a session ID to your username, format: myuser:password-ip:acpsres-c:US-id:12345.

Q: How to choose product type?

A:

  • acpsres: Dynamic residential IP, suitable for web scraping
  • acpsstatic: Static residential IP, use when fixed IP is needed
  • acpsdc: Datacenter IP, high performance and low cost

Q: What to do if proxy connection fails?

A: Check if your username and password format follows the k:v-k:v format, ensure network connection is normal.


Need help? Contact our Technical Support

基于 MIT 许可发布