# curl 명령어

$ curl http://domain.com/path?query
$ curl -X POST -H "Content-Type: application/json; charset=utf-8" -d '{"key": "value"}' http://domain.com/path?query
1
2
  • -i: 응답 헤더도 표시
  • -s: 부가정보 미표시
  • -v: verbose

더 자세한 옵션은 --help로 봐가면서 사용하자.

최종 수정: 2021-1-7 15:25:10