私はnode.jsの新機能ですが、いくつかの基本的なコードを使い、いくつかのリクエストをしてみたかったのです。現時点では、私はOCW検索(http://www.ocwsearch.com/)で遊んでいますが、サンプル検索リクエストを使用していくつかの基本的なリクエストを行っています:Node.js 301のリダイレクトを返すリクエスト
しかし、私はちょうど)google.comを照会すると、私が何が起こっているのかあまりわからないんだけど、私
<html>
<head><title>301 Moved Permanently</title></head>
<body bgcolor="white">
<center><h1>301 Moved Permanently</h1></center>
<hr><center>nginx/0.7.65</center>
</body>
</html>
に戻っています。私はnginxを見てきましたが、ほとんどの質問は、自分のサーバーを設定していた人たちから聞かれるように思えました。代わりにhttps要求を使用しようとしましたが、エラー 'ENOTFOUND'を返します。以下
マイコード:あなたが与えることができる任意の助け
var http = require('http');
http.createServer(function (request, response) {
response.writeHead(200, {'Content-Type': 'text/plain'});
response.end('Hello World\n');
var options = {
host:'ocwsearch.com',
path:
'/api/v1/search.json?q=statistics&contact=http%3a%2f%2fwww.ocwsearch.com%2fabout/',
method: 'GET'
}
var req = http.request(options, function(res) {
console.log("statusCode: ", res.statusCode);
console.log("headers: ", res.headers);
res.on('data', function(d) {
process.stdout.write(d);
});
});
req.end();
req.on('error', function(e) {
console.error(e);
});
}).listen(8124);
console.log('Server running at http://127.0.0.1:8124/');
これは本当に簡単な質問であれば申し訳ありません、と感謝!
これは非常に多くの$です。 – Krinkle