1
1
mirror of https://github.com/ariya/phantomjs.git synced 2024-08-15 15:50:34 +03:00
phantomjs/examples/postjson.js
2020-06-12 07:47:11 -07:00

20 lines
473 B
JavaScript

// Example using HTTP POST operation
"use strict";
var page = require('webpage').create(),
server = 'http://ptsv2.com/t/phantomjs-toilet/post',
data = '{"universe": "expanding", "answer": 42}';
var headers = {
"Content-Type": "application/json"
}
page.open(server, 'post', data, headers, function (status) {
if (status !== 'success') {
console.log('Unable to post!');
} else {
console.log(page.content);
}
phantom.exit();
});