0
nodejsでコードを実行しようとすると、すぐにエラーが発生し、プロキシでurlを実行する処理が行われませんが、プロキシオプションを削除すると機能します。続き は、プロキシを使用して任意のURLを打つために私のコードです:nodejsのリクエストモジュールでプロキシオプションが動作しない
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);
}
});
}
});
を試してみてください? – DevDig