curl -x pr.lunaproxy.com:12233 myip.lunaproxy.io
Products
AI
Proxy dân dụng
Thu thập dữ liệu nhân bản, không che chắn IP. tận hưởng 200 triệu IP thực từ hơn 195 địa điểmProxy lưu lượng không giới hạn AI
Sử dụng không giới hạn các proxy dân cư được phân loại, các quốc gia được chỉ định ngẫu nhiênProxy ISP
Trang bị proxy dân dụng tĩnh (ISP) và tận hưởng tốc độ và sự ổn định vượt trộiProxy trung tâm dữ liệu
Sử dụng IP trung tâm dữ liệu ổn định, nhanh chóng và mạnh mẽ trên toàn thế giớiProxy ISP luân phiên
Trích xuất dữ liệu cần thiết mà không sợ bị chặnMở khóa Web Free
Dễ dàng mô phỏng hoạt động của người thật và nhanh chóng thu thập dữ liệu thời gian thựcTrình tải xuống YouTube
Tải xuống hàng loạt video và âm thanh chất lượng cao hoàn toàn tự độngProxy dân dụng Save $5
Quét giống như con người & Không chặn IPProxy cư trú không giới hạn AI
Được tính theo thời gian, lưu lượng không giới hạnAPI thu thập dữ liệu toàn diện
Dễ dàng mô phỏng hoạt động của người thật và nhanh chóng thu thập dữ liệu thời gian thựcTrình tải xuống YouTube
Tải xuống hàng loạt video và âm thanh chất lượng cao hoàn toàn tự độngSử dụng cài đặt
API
Người dùng & Xác thực
Nhiều tài khoản người dùng proxy được hỗ trợnguồn
Enterprise Exclusive
đại lý
VN
Bảng điều khiển
Múi giờ địa phương
Tài khoản
Xác thực danh tính
Múi giờ địa phương
curl -x pr.lunaproxy.com:12233 myip.lunaproxy.io
import requests mainUrl = "http://myip.lunaproxy.io/" def testUrl(): entry = 'http://{}:{}@ip:port'.format("username", "password") proxy = { 'http': entry, 'https': entry, } try: res = requests.get(mainUrl, proxies=proxy, timeout=10) print(res.status_code, res.text) except Exception as e: print("error", e) pass testUrl()
import fetch from 'node-fetch'; import createHttpsProxyAgent from 'https-proxy-agent' const proxy = 'ip:port' const agent = createHttpsProxyAgent( `http://@${proxy}` ); const response = await fetch('http://myip.lunaproxy.io', { method: 'get', agent: agent, }); console.log(await response.text());
<?php $proxy = 'ip:port'; $query = curl_init('http://myip.lunaproxy.io'); curl_setopt($query, CURLOPT_RETURNTRANSFER, 1); curl_setopt($query, CURLOPT_PROXY, "http://$proxy"); $output = curl_exec($query); curl_close($query); if ($output) echo $output; ?>
package main import ( "fmt" "io/ioutil" "net/http" "net/url" ) func main() { const proxy = "ip:port" proxyUrl, _ := url.Parse( fmt.Sprintf( "http://%s:%s@%s", proxy, ), ) client := &http.Client{Transport: &http.Transport{Proxy: http.ProxyURL(proxyUrl)}} request, _ := http.NewRequest("GET", "http://myip.lunaproxy.io", nil, ) response, err := client.Do(request) if err != nil { fmt.Println(err) return } responseText, _ := ioutil.ReadAll(response.Body) fmt.Println(string(responseText)) }
package example; import org.apache.http.HttpHost; import org.apache.http.client.fluent.*; public class Main { public static void main(String[] args) throws Exception { String proxyHost = "pr.lunaproxy.com"; int proxyPort = 12233; HttpHost entry = new HttpHost(proxyHost, proxyPort); String query = Executor.newInstance() .execute( Request.Get("http://myip.lunaproxy.io") .viaProxy(entry) ) .returnContent() .asString(); System.out.println(query); } }
using System; using System.Net; class Example { static void Main() { var proxy = "ip:port"; var client = new WebClient(); client.Proxy = new WebProxy(proxy); Console.WriteLine( client.DownloadString("http://myip.lunaproxy.io") ); } }
curl -x pr.lunaproxy.com:12233 -U "customer-USER:PASS" http://myip.lunaproxy.io
import requests mainUrl = "http://myip.lunaproxy.io/" def testUrl(): entry = 'http://{}:{}@ip:port'.format("username", "password") proxy = { 'http': entry, 'https': entry, } try: res = requests.get(mainUrl, proxies=proxy, timeout=10) print(res.status_code, res.text) except Exception as e: print("error", e) pass testUrl()
import fetch from 'node-fetch'; import createHttpsProxyAgent from 'https-proxy-agent' const username = 'customer-USER'; const password = 'PASS'; const proxy = 'ip:port' const agent = createHttpsProxyAgent( `http://${username}:${password}@${proxy}` ); const response = await fetch('http://myip.lunaproxy.io', { method: 'get', agent: agent, }); console.log(await response.text());
<?php $username = 'customer-USER'; $password = 'PASS'; $proxy = 'ip:port'; $query = curl_init('http://myip.lunaproxy.io'); curl_setopt($query, CURLOPT_RETURNTRANSFER, 1); curl_setopt($query, CURLOPT_PROXY, "http://$proxy"); curl_setopt($query, CURLOPT_PROXYUSERPWD, "$username:$password"); $output = curl_exec($query); curl_close($query); if ($output) echo $output; ?>
package main import ( "fmt" "io/ioutil" "net/http" "net/url" ) func main() { const username = "customer-USER" const password = "PASS" const proxy = "ip:port" proxyUrl, _ := url.Parse( fmt.Sprintf( "http://%s:%s@%s", username, password, proxy, ), ) client := &http.Client{Transport: &http.Transport{Proxy: http.ProxyURL(proxyUrl)}} request, _ := http.NewRequest("GET", "http://myip.lunaproxy.io", nil, ) request.SetBasicAuth(username, password) response, err := client.Do(request) if err != nil { fmt.Println(err) return } responseText, _ := ioutil.ReadAll(response.Body) fmt.Println(string(responseText)) }
package example; import org.apache.http.HttpHost; import org.apache.http.client.fluent.*; public class Main { public static void main(String[] args) throws Exception { String username = "customer-USER"; String password = "PASS"; String proxyHost = "pr.lunaproxy.com"; int proxyPort = 12233; HttpHost entry = new HttpHost(proxyHost, proxyPort); String query = Executor.newInstance() .auth(entry, username, password) .execute( Request.Get("http://myip.lunaproxy.io") .viaProxy(entry) ) .returnContent() .asString(); System.out.println(query); } }
using System; using System.Net; class Example { static void Main() { var username = "customer-USER"; var password = "PASS"; var proxy = "ip:port"; var client = new WebClient(); client.Proxy = new WebProxy(proxy); client.Proxy.Credentials = new NetworkCredential(username, password); Console.WriteLine( client.DownloadString("http://myip.lunaproxy.io") ); } }
Vui lòng liên hệ bộ phận chăm sóc khách hàng qua email
Chúng tôi sẽ trả lời bạn qua email trong vòng 24h
For your payment security, please verify