私たちのサーバーは、プロキシ サーバーなしで http 呼び出しを行います。プロキシ サーバーを介して同じ呼び出しを行うことは可能ですか? (リクエストを使用したいです。)
プロキシ サーバーの例: 112.175.18.180 ポート 80
app.js:
var http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello World\n');
}).listen(1337, '127.0.0.1');
console.log('Server running at http://127.0.0.1:1337/');
var request = require("request");
var parseMyAwesomeHtml = function(html) {
console.log(html);
};
request("http://checkip.dyndns.org/", function (error, response, body) {
if (!error)
parseMyAwesomeHtml(body);
else
console.log(error);
});