...
Code Block | ||
---|---|---|
| ||
var page = require('webpage').create();
var system = require('system');
var address;
// The URL that is submitted to the proxy service
address = system.args[1];
// Set up a fake user agent
page.settings.userAgent = 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36';
// Standard response structure, see Response structure section in the
// documentation
var result = {
body: null,
headers: null,
statusCode: null,
statusMessage: null,
httpVersion: null,
};
// Obtain response headers and status code from the loaded page
page.onResourceReceived = function(response) {
// Verify that it is the actual page that has finished loading (and not
// internal resources)
if (decodeURIComponent(response.url) == address) {
result.headers = {};
for (var i in response.headers) {
// Clone headers into the final response
result.headers[response.headers[i].name] = response.headers[i].value;
}
// Clone HTTP status code and text into the final response
result.statusCode = response.status;
result.statusMessage = response.statusText;
}
};
page.onLoadFinished = function(status) {
// Page load has completed, including all internal assets
// Copy page HTML source code (as manipulated by any internal JS scripts)
// into final response
result.body = page.content;
// Write out final response and exit
console.log(JSON.stringify(result));
phantom.exit();
}
page.open(address, function (status) {
if (status !== 'success') {
// Handle failures
console.log('FAILED loading the address');
phantom.exit();
}
}); |
...