当我尝试使用nodejs执行代码时,它立即给出错误,甚至没有进程来执行带代理的url,但是当我删除代理选项时它可以工作。 以下是我使用代理命中任何网址的代码:
request({
headers: {
'Content-Type': 'application/x-www-form-urlencoded',
'Accept-Language': 'en-US,en;q=0.5',
'User-Agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.75 Safari/537.36',
// 'Cookie': cookieReq
},
uri: 'www.website.com',
method: 'GET',
proxy: 192.12.31.12:3128
}, function (error, response, html) {
if (!error && response.statusCode == 200) {
// final operations
fs.writeFile('eight.html', html, function(err) {
if (err) {
return console.error(err);
}
});
}
});
答案 0 :(得分:0)
尝试
proxy: "http://192.12.31.12:3128"
而不是
proxy: 192.12.31.12:3128