node.js - Using npm 'request' to scrape data from a stock website -
i have searched around , can't find impossible or doing wrong.
http://www.investing.com/commodities/
has list of numbers want at.
when run
var request = require('request'); var url = 'http://www.investing.com/commodities/'; request(url, function(error, response, body){ console.log(response.statuscode) //403 })
im getting 403 statuscode response. free website can go to, why can't node server response it?
thanks response (that's not 403...!)
Comments
Post a Comment