Proksi
Proksi Perumahan
Lebih dari 200 juta IP dari ISP asli masuk daftar putih. Proksi yang dikelola/diperoleh melalui dasbor.
Proksi Perumahan (Socks5)
Lebih dari 200 juta IP asli di 190+ lokasi
Paket Proxy Tak Terbatas
Gunakan pusat data 700 ribu+ lPsworldwide yang stabil, cepat, dan tangguh.
Proksi Perumahan Statis
Proksi khusus yang tahan lama, proksi residensial yang tidak berputar
Proksi Pusat Data Khusus
Gunakan pusat data 700 ribu+ lPsworldwide yang stabil, cepat, dan tangguh.
Proksi
API
Daftar proxy dihasilkan melalui tautan API dan diterapkan ke program yang kompatibel setelah otorisasi IP daftar putih
Pengguna+Pass Auth
Buat kredensial secara bebas dan gunakan proxy yang berputar di perangkat atau perangkat lunak apa pun tanpa memasukkan IP ke dalam daftar yang diizinkan
Manajer Proksi
Kelola semua proxy menggunakan antarmuka APM yang dikembangkan sendiri oleh ABCProxy
Proksi
Proksi Perumahan
Lebih dari 200 juta IP dari ISP asli masuk daftar putih. Proksi yang dikelola/diperoleh melalui dasbor.
Mulai dari
$0.77/ GB
Proksi Perumahan (Socks5)
Lebih dari 200 juta IP asli di 190+ lokasi
Mulai dari
$0.045/ IP
Paket Proxy Tak Terbatas
Gunakan pusat data 700 ribu+ lPsworldwide yang stabil, cepat, dan tangguh.
Mulai dari
$79.17/ Day
Memutar Proxy ISP
Proksi ISP Berputar dari ABCProxy menjamin waktu sesi yang lama.
Mulai dari
$0.77/ GB
Proksi Perumahan Statis
Proksi khusus yang tahan lama, proksi residensial yang tidak berputar
Mulai dari
$5/MONTH
Proksi Pusat Data Khusus
Gunakan pusat data 700 ribu+ lPsworldwide yang stabil, cepat, dan tangguh.
Mulai dari
$4.5/MONTH
Berdasarkan Kasus Penggunaan Lihat semua
Dasar pengetahuan
English
繁體中文
Русский
Indonesia
Português
Español
بالعربية
Penelitian Pasar
Agregasi Tarif Perjalanan
Penjualan & E-niaga
SERP & SEO
Teknologi Iklan
Media Sosial untuk Pemasaran
Sepatu Kets & Tiket
Pengikisan Data
Pemantauan Harga
Perlindungan Email
Tinjau Pemantauan
Lihat semua
Proksi Amazon
Proksi eBay
Proksi Shopify
Proksi Etsy
Proksi Airbnb
Proksi Walmart
Proksi Twitch
pengikisan web
Proksi Facebook
Proksi Discord
Proksi Instagram
Proksi Pinterest
Proksi Reddit
Proksi Tiktok
Proksi Twitter
Proksi Youtube
Proksi ChatGPT
Proksi Diablo
Proksi Silkroad
Proksi Warcraf
TikTok Toko
Agregator Kupon
Dokumentasi
FAQ
Program Afiliasi
Program Mitra
Blog
video tutorial
larutan
IP Pool - Affordable and Secure IP Address Solutions
High Speed - Unleashing the Power of Fast Connections
"Best Static Residential Proxy Providers for Secure and Reliable Browsing"
Lihat semua
Kami menerima metode pembayaran ini :
Kami memastikan bahwa integrasi produk kami ke infrastruktur scraping Anda semudah mungkin. Dengan dukungan berbagai bahasa dan contoh kode yang siap pakai, proyek scraping web Anda dapat dimulai dengan cepat dan mudah.
curl -k -v -x https://unblock.abcproxy.com:17610 \
-U 'USERNAME:PASSWORD' \
'https://www.abcproxy.com/' \
-H 'X-Abc-Render: html'
import requests
# Use your Web Unblocker credentials here.
USERNAME, PASSWORD = 'YOUR_USERNAME', 'YOUR_PASSWORD'
# Define proxy dict.
proxies = {
'http': f'http://{USERNAME}:{PASSWORD}@unblock.abcproxy.com:17610',
'https': f'https://{USERNAME}:{PASSWORD}@unblock.abcproxy.com:17610',
}
headers = {
'X-Abc-Render': 'html'
}
response = requests.get(
'https://www.abcproxy.com/',
verify=False, # It is required to ignore certificate
proxies=proxies,
headers=headers,
)
# Print result page to stdout
print(response.text)
# Save returned HTML to result.html file
with open('result.html', 'w') as f:
f.write(response.text)
<?php
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://www.abcproxy.com/');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_PROXY, 'https://unblock.abcproxy.com:17610');
curl_setopt($ch, CURLOPT_PROXYUSERPWD, 'YOUR_USERNAME' . ':' . 'YOUR_PASSWORD');
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
curl_setopt_array($ch, array(
CURLOPT_HTTPHEADER => array(
'X-Abc-Render: html'
)
));
$result = curl_exec($ch);
echo $result;
if (curl_errno($ch)) {
echo 'Error:' . curl_error($ch);
}
curl_close($ch);
import fetch from 'node-fetch';
import { HttpsProxyAgent } from 'https-proxy-agent';
const username = 'YOUR_USERNAME';
const password = 'YOUR_PASSWORD';
const agent = new HttpsProxyAgent(
`https://${username}:${password}@unblock.abcproxy.com:17610`
);
// We recommend accepting our certificate instead of allowing insecure (http) traffic
process.env['NODE_TLS_REJECT_UNAUTHORIZED'] = 0;
const headers = {
'X-Abc-Render': 'html',
}
const response = await fetch('https://www.abcproxy.com/', {
method: 'get',
headers: headers,
agent: agent,
});
console.log(await response.text());
package main
import (
"crypto/tls"
"fmt"
"io/ioutil"
"net/http"
"net/url"
)
func main() {
const Username = "YOUR_USERNAME"
const Password = "YOUR_PASSWORD"
proxyUrl, _ := url.Parse(
fmt.Sprintf(
"https://%s:%s@unblock.abcproxy.com:17610",
Username,
Password,
),
)
customTransport := &http.Transport{Proxy: http.ProxyURL(proxyUrl)}
// We recommend accepting our certificate instead of allowing insecure (http) traffic
customTransport.TLSClientConfig = &tls.Config{InsecureSkipVerify: true}
client := &http.Client{Transport: customTransport}
request, _ := http.NewRequest("GET",
"https://www.abcproxy.com/",
nil,
)
// Add custom cookies
request.Header.Add("X-Abc-Render", "html")
request.SetBasicAuth(Username, Password)
response, _ := client.Do(request)
responseText, _ := ioutil.ReadAll(response.Body)
fmt.Println(string(responseText))
}
package org.example;
import org.apache.hc.client5.http.auth.AuthScope;
import org.apache.hc.client5.http.auth.CredentialsProvider;
import org.apache.hc.client5.http.classic.methods.HttpGet;
import org.apache.hc.client5.http.config.RequestConfig;
import org.apache.hc.client5.http.impl.auth.CredentialsProviderBuilder;
import org.apache.hc.client5.http.impl.classic.CloseableHttpClient;
import org.apache.hc.client5.http.impl.classic.HttpClients;
import org.apache.hc.client5.http.impl.io.PoolingHttpClientConnectionManagerBuilder;
import org.apache.hc.client5.http.ssl.NoopHostnameVerifier;
import org.apache.hc.client5.http.ssl.SSLConnectionSocketFactoryBuilder;
import org.apache.hc.client5.http.ssl.TrustAllStrategy;
import org.apache.hc.core5.http.HttpHost;
import org.apache.hc.core5.http.io.entity.EntityUtils;
import org.apache.hc.core5.http.message.StatusLine;
import org.apache.hc.core5.ssl.SSLContextBuilder;
import java.util.Arrays;
import java.util.Properties;
public class Main {
public static void main(final String[] args)throws Exception {
final CredentialsProvider credsProvider = CredentialsProviderBuilder.create()
.add(new AuthScope("unblock.abcproxy.com", 17610), "USERNAME", "PASSWORD".toCharArray())
.build();
final HttpHost target = new HttpHost("https", "https://www.abcproxy.com/", 443);
final HttpHost proxy = new HttpHost("https", "unblock.abcproxy.com", 17610);
try (final CloseableHttpClient httpclient = HttpClients.custom()
.setDefaultCredentialsProvider(credsProvider)
.setProxy(proxy)
// We recommend accepting our certificate instead of allowing insecure (http) traffic
.setConnectionManager(PoolingHttpClientConnectionManagerBuilder.create()
.setSSLSocketFactory(SSLConnectionSocketFactoryBuilder.create()
.setSslContext(SSLContextBuilder.create()
.loadTrustMaterial(TrustAllStrategy.INSTANCE)
.build())
.setHostnameVerifier(NoopHostnameVerifier.INSTANCE)
.build())
.build())
.build()) {
final RequestConfig config = RequestConfig.custom()
.build();
final HttpGet request = new HttpGet("/locations.html");
request.addHeader("X-Abc-Render","html");
request.setConfig(config);
System.out.println("Executing request " + request.getMethod() + " " + request.getUri() +
" via " + proxy + " headers: " + Arrays.toString(request.getHeaders()));
httpclient.execute(target, request, response -> {
System.out.println("----------------------------------------");
System.out.println(request + "->" + new StatusLine(response));
EntityUtils.consume(response.getEntity());
return null;
});
}
}
}
using System;
using System.Net;
using System.Net.Http;
using System.Threading.Tasks;
namespace OxyApi
{
class Program
{
static async Task Main(string[] args)
{
var webProxy = new WebProxy
{
Address = new Uri("https://unblock.abcproxy.com:17610"),
BypassProxyOnLocal = false,
UseDefaultCredentials = false,
Credentials = new NetworkCredential(
userName: "YOUR_USERNAME",
password: "YOUR_PASSWORD"
)
};
var httpClientHandler = new HttpClientHandler
{
Proxy = webProxy,
};
// We recommend accepting our certificate instead of allowing insecure (http) traffic
httpClientHandler.ClientCertificateOptions = ClientCertificateOption.Manual;
httpClientHandler.ServerCertificateCustomValidationCallback =
(httpRequestMessage, cert, cetChain, policyErrors) =>
{
return true;
};
var client = new HttpClient(handler: httpClientHandler, disposeHandler: true);
// Add custom cookies
client.DefaultRequestHeaders.Add("X-Abc-Render", "html");
Uri baseUri = new Uri("https://www.abcproxy.com/");
client.BaseAddress = baseUri;
var requestMessage = new HttpRequestMessage(HttpMethod.Get, "");
var response = await client.SendAsync(requestMessage);
var contents = await response.Content.ReadAsStringAsync();
Console.WriteLine(contents);
}
}
}
Dukungan.
support@abcproxy.com
Untuk menyelesaikan masalah dengan lebih baik.
Harap berikan ID login Anda
Detail pertanyaan + Foto atau video pertanyaan
Terima kasih atas kerja sama Anda!
Download