gpt4 book ai didi

javascript - 为 NightmareJS 指定 SOCKS 代理?

转载 作者:可可西里 更新时间:2023-11-01 02:22:39 24 4
gpt4 key购买 nike

我可以为 NightmareJS 设置一个 HTTP 代理,但我该如何指定类型 (http/socks5/socks4)?这是我用来设置 HTTP 代理的代码:

const nightmare = Nightmare({
show:true,
switches: {
'proxy-server': proxyHost + ':' + proxyPort,
'ignore-certificate-errors': true
},
waitTimeout: 400000
});

最佳答案

您可以通过 URI 方案指定代理的类型:socks5://

const nightmare = Nightmare({
switches: {
'proxy-server': 'socks5://' + proxyHost + ':' + proxyPort,
},
});

关于javascript - 为 NightmareJS 指定 SOCKS 代理?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43794397/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com