For the complete documentation index, see llms.txt. This page is also available as Markdown.

跳过IP

要启用此功能,请联系技术支持。

跳过IP功能够让您生成多个IP范围列表,这些列表将在代理连接的IP解析过程中被自动绕过。

要启用此功能,您需要添加 _skipipslist- 键,该键的值是生成列表的ULID (id)。

示例:

curl -v -x http://username123:password321_country-br_skipipslist-01GRBHR1DMBFRH8VW7APEWD5BQ@geo.iproyal.com:12321 -L http://example.com
<?php
$username = 'username123';
$password = 'password321_country-br_skipipslist-01GRBHR1DMBFRH8VW7APEWD5BQ';
$proxy = 'geo.iproyal.com:12321';
$url = 'http://example.com';

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_PROXY, $proxy);
curl_setopt($ch, CURLOPT_PROXYUSERPWD, "$username:$password");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

$response = curl_exec($ch);

if (curl_errno($ch)) {
    echo 'Error:' . curl_error($ch);
} else {
    echo $response;
}

curl_close($ch);
?>

有关如何创建和管理这些列表的更多信息,请参阅我们文档的“仪表板”部分中的“跳过IP”小节。

跳过IP

Last updated