🚀 Proxy System
Server Information
SOCKS5h Active
socks5h://frp.freefrp.net:31701

* Lưu ý: Sử dụng socks5h để hỗ trợ phân giải DNS tại phía server.

Download Extension
🛠️ Example: cURL
curl -x socks5h://frp.freefrp.net:31701 https://ifconfig.me
🐍 Example: Python (Requests)
import requests

proxies = {
    'http': 'socks5h://frp.freefrp.net:31701',
    'https': 'socks5h://frp.freefrp.net:31701'
}

response = requests.get('https://ifconfig.me', proxies=proxies)
print(response.text)
🟢 Example: Node.js (Axios)
// Install: npm install socks-proxy-agent axios
const axios = require('axios');
const { SocksProxyAgent } = require('socks-proxy-agent');

const agent = new SocksProxyAgent('socks5h://frp.freefrp.net:31701');

axios.get('https://ifconfig.me', { httpAgent: agent, httpsAgent: agent })
     .then(res => console.log(res.data));