Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have wrote a script based on PhantomJS to crawl pages. Some data on the web pages are got by javascript.

The following is my code. I executed the code a few times and found that sometimes I could got the stock information (got by javascript) of the web page while sometimes I couldn't.

Assume the situation that I could got the stock information is sus and the situation that I couldn't got the stock information is fal.

I checked the response info recorded and found that there were two related http requests. The first related http request (naming it geo) is for getting the location of the browser. The second related http request (nameing it stoinfo) is for getting the stock information according to the location of the browser.

In the situation sus, I found that the two http requests geo and stoinfo returned the status code 200.

While in the situation fal, I found that the http request geo returned the status code 200 but there was no location information displayed on the page. And the http request stoinfo returned the status code 400.

I compared the two urls of stoinfo in the two situations and found that they were the same. Strange enough! Was it caused by the network situation?

The following is the geo respoonse in the situation sus:

=1352873149417">http://price.360buy.com/ows/GetIPLocation.aspx?callback=jsonp1352873149352&=1352873149417

start

200

=1352873149417">http://price.360buy.com/ows/GetIPLocation.aspx?callback=jsonp1352873149352&=1352873149417

end

200

The following is the geo respoonse in the situation fal:

=1352871772264">http://price.360buy.com/ows/GetIPLocation.aspx?callback=jsonp1352871772199&=1352871772264

start

200

=1352871772264">http://price.360buy.com/ows/GetIPLocation.aspx?callback=jsonp1352871772199&=1352871772264

end

200

The following is the stoinfo reponse in the situation sus:

http://price.360buy.com/stocksoa/StockHandler.ashx?callback=getProvinceStockCallback&type=provincestock&skuid=256E398583BA17A534D75CB95309E0FF&provinceid=1

start

200

http://price.360buy.com/stocksoa/StockHandler.ashx?callback=getProvinceStockCallback&type=provincestock&skuid=256E398583BA17A534D75CB95309E0FF&provinceid=1

end

200

The following is the stoinfo response in the situation fal:

http://price.360buy.com/stocksoa/StockHandler.ashx?callback=getProvinceStockCallback&type=provincestock&skuid=256E398583BA17A534D75CB95309E0FF&provinceid=1

start

400

http://price.360buy.com/stocksoa/StockHandler.ashx?callback=getProvinceStockCallback&type=provincestock&skuid=256E398583BA17A534D75CB95309E0FF&provinceid=1

end

400

I also found that the http request stoinfo was sent out but there was on response info related in the file that stored the response status.

The following is my code:

var page = require('webpage').create();
var system = require('system');
var fs = require('fs');

if (system.args.length !== 2) {
    console.log('Usage: phantomjs html_content <URL>');
phantom.exit(1);
}

page.settings = {
loadImages: false,
javascriptEnabled: true,
userAgent: 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/22.0.1207.1 Safari/537.1',
};

page.viewportSize = {
width: 1600,
height: 15000,
};

page.onError = function(msg, trace) {
var msgStack = ['ERROR: ' + msg];
if (trace) {
    msgStack.push('TRACE:');
    trace.forEach(function(t) {
        msgStack.push(' -> ' + t.file + ': ' + t.line + 
                      (t.function ? "(in function '" + t.function + "')" : ""));
    });
}

console.error(msgStack.join('\n'));
};

page.onResourceRequested = function(req) {
fs.write('request.txt', JSON.stringify(req, null, 4) + '\n', 'a');
fs.write('request_url.txt', req.url + '\n\n', 'a')
};

page.onResourceReceived = function(res) {
fs.write('response.txt', JSON.stringify(res, null, 4) + '\n', 'a');
status = res.url + '\n' + res.stage + '\n' + res.status + '\n\n'
fs.write('response_status.txt', status, 'a')
};

url = system.args[1];

function store_content(status) {
if (status !== 'success') {
    console.log('Fail to open url: ' + url);
    phantom.exit(1);
} else {
    // console.log(page.content);
    fs.write('page.txt', page.content, 'a');
}
}

page.open(url, function(status) {
store_content(status);
// setTimeout(store_content(status), 10000);
page.close()
phantom.exit();
});
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.