使用 Proxyrack API 的快速示例:
宽松:
username-autoReplace-loose
或
"username;autoReplace=loose"
严格:
username-autoReplace-strict
或
"username;autoReplace=strict"
任意:
username-autoReplace-any
或
"username;autoReplace=any"
无:
username-autoReplace-none
或
"username;autoReplace=none"
一个粘性端口将连接到一个外部IP地址,该地址将在设定的时间内保持静态,然后轮换。如果IP在轮换间隔中途离线,您的自动替换设置将决定接下来会发生什么。您可以通过以下两种方式设置自动替换:
通过您的仪表板
使用Proxyrack API
自动替换有4种选项:
"宽松": 如果出口节点(IP地址)离线,代理服务器将自动用来自同一国家的IP替换该IP。
"严格": 如果出口节点(IP地址)离线,代理服务器将尝试用来自同一城市、ISP和国家的IP替换该IP。如果无法做到这一点,IP将不会被替换,任何后续请求将导致错误消息。
"任意": 如果出口节点(IP地址)离线,代理服务器将连接到一个随机的新IP地址,而不考虑您之前连接的IP地址。
"无": 如果出口节点(IP地址)离线,代理服务器将不会自动替换IP地址。端口上的任何后续请求将导致错误消息。
如果您使用旧的“true”、“false”或“any”自动替换设置,这些设置仍将按原样工作。如果您想继续使用旧选项,则无需更改任何内容。
仪表板
在您的仪表板中,从左侧导航菜单中选择您想要使用的代理。到达那里后,点击“代理端点”选项卡,并确保“粘性端口”被突出显示,如下所示。
向下滚动页面,直到看到“设置默认端口设置”部分,然后点击“添加新端口”。
将会出现一个窗口,你会看到一个“自动替换”设置,如下图所示。
点击框,然后您将看到一个下拉菜单出现。从下拉菜单中选择您想要的自动替换设置。
输入您想为此设置保存的端口号,然后点击“保存”。您也可以选择“应用为所有端口的默认设置”以将其设为所有端口的默认设置。
在“设置默认端口设置”表中,您将看到确认信息,表明您所选择的端口的自动替换设置已成功保存。
Proxyrack API
您可以通过调整用户名来设置自动替换设置,无论您使用破折号语法还是分号语法配置代理:
破折号语法:在用户名后添加“-autoReplace-{desired setting}”
分号语法:在用户名后添加“;autoReplace={desired setting}”
请注意,下面使用了 cURL 作为示例。您不需要使用 cURL 来设置自动替换。您可以在配置代理的任何地方进行此操作,例如在浏览器、代码等中。
示例
不限流量住宅:
请注意:不限流量住宅代理不再可供购买。然而,现有订阅将继续有效。
"=" 语法:curl -x unmetered.residential.proxyrack.net:10000 -U 'username;autoReplace=strict:password' http://example.com
"-" 语法:curl -x unmetered.residential.proxyrack.net:10000 -U 'username-autoReplace-strict:password' http://example.com
实际示例 这里。
高级住宅代理:
"=" 语法:curl -x premium.residential.proxyrack.net:10000 -U 'username;autoReplace=strict:password' http://example.com
"-" 语法:curl -x premium.residential.proxyrack.net:10000 -U 'username-autoReplace-strict:password' http://example.com
实际示例 这里。
私人无限流量住宅代理:
"=" 语法:curl -x private.residential.proxyrack.net:10000 -U 'username;autoReplace=strict:password' http://example.com
"-" 语法:curl -x private.residential.proxyrack.net:10000 -U 'username-autoReplace-strict:password' http://example.com
实时示例 这里。
美国轮换数据中心:
"=" 语法:curl -x usa.rotating.proxyrack.net:10000 -U 'username;autoReplace=strict:password' http://example.com
"-" 语法:curl -x usa.rotating.proxyrack.net:10000 -U 'username-autoReplace-strict:password' http://example.com
实时示例 在这里。
全球旋转数据中心:
"=" 语法:curl -x global.rotating.proxyrack.net:10000 -U 'username;autoReplace=strict:password' http://example.com
"-" 语法:curl -x global.rotating.proxyrack.net:10000 -U 'username-autoReplace-strict:password' http://example.com
实时示例 在这里。