更新:継続的にデータを受信したい。現在、これは 1 つのデータ セットを返します。唯一の代替手段は、ストリーミングの効果のみを実現する polling/setInterval 手法だと思います。
node.js を使用して Yahoo または Google からストリーミング財務データを取得することは可能ですか?
私が取得しようとしているデータに使用できるパブリック API がないことはわかっています。
Express を使用してこれを書きましたが、データはストリーミングされません。
var express = require('express'),
http = require('http'),
app = express.createServer();
// Using either Google or Yahoo...
var client = http.createClient(80,'download.finance.yahoo.com');
var request = client.request('GET', '/d/quotes.csv?s=GOOG&f=snr', { host: 'download.finance.yahoo.com' });
//var client = http.createClient(80,'www.google.com');
//var request = client.request('GET', '/finance/info?client=ig&q=CSCO', { host: 'www.google.com'});
request.end();
request.addListener('response', function (response) {
response.setEncoding(encoding="utf8");
response.addListener('data', function (data) {
console.log(data);
});
response.addListener('end',function(data) {
console.log('End');
});
});
app.listen(8080);