express.js에서 curl 호출 방법 [post]
curl -X POST --data "payload={\"text\": \"invalid token exception\"}" http://google.com 위와 같은 curl을 express.js에서 호출해야한다면? 아래와 같이 "request"를 이용하자 var request = require('request'); request.post({ headers: {'content-type' : 'application/json'} , url: , body: } , function(error, response, body){ console.log(body); });