키워드:
#리눅스
# 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
2
-i
: 응답 헤더도 표시-s
: 부가정보 미표시-v
: verbose
더 자세한 옵션은 --help로 봐가면서 사용하자.
키워드:
#리눅스