1

私たちのサーバーは、プロキシ サーバーなしで 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);
});
4

1 に答える 1

1

正しい構文が見つかりました。よく働く。

app.js:

var http = require('http');
var request = require("request");

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 parseMyAwesomeHtml = function(html) {
    console.log(html);
};



request({uri:"http://checkip.dyndns.org/",proxy: 'http://112.175.18.180/', port: 80 }, function (error, response, body) {
    if (!error)
        parseMyAwesomeHtml(body);
    else
        console.log(error);
});
于 2013-03-15T19:31:18.820 に答える