[Linux cmd] curl 명령어
curl [option] {URL} client URL, url 가지고 이것저것 하는 명령어 -X : method (POST, GET, PUT, DELETE: CRUD) -H : header -v : verbose, curl하고 아무것도 실행하는 게 출력이 안되면 궁금하니까 출력해주는 거 curl -X POST -H "authorization:autho" http://test.com/PATH_PARAM post로 test.com으로 request 날리는데 header에 authorization:autho가 들어있는거 그럼 서버에선 authorization에 있는 값 보고 확인하고 쓰는 거지!