개발/Javascript

터미널에서 api 테스트

옐이 2016. 9. 18. 22:16


get테스트

curl -v localhost:3000/api/posts 


post테스트(bodyParser에 type이 */*가 아니면 안나옴

curl -v \

  --data '{"id":"1","writer":"alie","title":"first posting"}' \

  http://localhost:3000/api/bugs


curl -v \

  --header 'Content-Type: application/json' \

  --data '{"id":"1","writer":"alie","title":"first posting"}' \

  http://localhost:3000/api/bugs