라벨이 HEAD인 게시물 표시

CLI 환경 CURL 사용 예제 모음 (GET/POST/DELETE/PUT/HEAD)

### HEAD 요청 ``` // 요청 예시 curl -I https://www.example.com -- // 서버가 받았을 때 전문 HEAD / HTTP/1.1 Host: www.example.com ``` ### DELETE 요청 ``` // 요청 예시 curl -X DELETE https://www.example.com/resource -- // 서버가 받았을 때 전문 DELETE /resource HTTP/1.1 Host: www.example.com ``` ### POST 요청 ( plain-text body ) ``` // 요청 예시 curl -X POST -d "data=Hello, World!" https://www.example.com/resource -- // 서버가 받았을 때 전문 POST /resource HTTP/1.1 Host: www.example.com Content-Length: 18 Content-Type: application/x-www-form-urlencoded data=Hello, World! ``` ### POST JSON 요청 ( plain-text body ) ``` // 요청 예시 curl -X POST -H "Content-Type: application/json" -d '{"key": "value"}' https://www.example.com/resource -- // 서버가 받았을 때 전문 POST /resource HTTP/1.1 Host: www.example.com Content-Type: application/json Content-Length: 15 {"key": "value"} ``` ### POST 파일 업로드 ``` // 요청 예시 curl -X POST -F "file=@path/to/file" https://www.exampl...

이 블로그의 인기 게시물

윤석열 계엄령 선포! 방산주 대폭발? 관련주 투자 전략 완벽 분석

대통령 퇴진운동 관련주: 방송·통신·촛불수혜주 완벽 분석

키움 OPEN API MFC 개발 (1)