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

高端池

此功能僅在有效訂閱的情況下可用。

激活后,“高端池”选项能够让您访问我们甄选出的最快速且最可靠的代理。但请注意,在提升品质的同时,可用代理的池会比通常可访问的总池要小,也就是“贵精不贵多”的道理。

要启用此功能,您需要添加值为1_streaming- 键。

示例:

curl -v -x http://username123:password321_country-br_streaming-1@geo.iproyal.com:12321 -L http://example.com
<?php
$username = 'username123';
$password = 'password321_country-br_streaming-1';
$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);
?>

Last updated