Advertisement
Guest User

Untitled

a guest
Jan 20th, 2018
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. var request = require("request");
  2.  
  3. var options = { method: 'POST',
  4. url: 'http://88b392f7.ngrok.io',
  5.  
  6. body: { key: 'http://flask.pocoo.org/docs/0.12/quickstart/' },
  7. json: true };
  8.  
  9. request(options, function (error, response, body) {
  10. if (error) throw new Error(error);
  11.  
  12. console.log(body);
  13. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement