OS/Shell 명령어
-
windows / linux : cURLOS/Shell 명령어 2023. 12. 10. 22:36
https://johngrib.github.io/wiki/cmd/curl/ curl 명령어 transfer a URL johngrib.github.io 요청 보내기 옵션 없이 사용 curl https://www.zhyun.kim 요청, 응답 데이터 모두 출력 curl -v https://www.zhyun.kim header 지정 curl \ -H 'Content-Type: text/html; charset=UTF=8' \ -H 'X-AUTH-TOKEN: hbsfdjkvKQLH23ZF' \ https://www.zhyun.kim POST 요청 보내기 curl -X POST https://www.naver.com json 데이터 함께 보내기 curl \ -X POST -d '{"name":"kim"}' \ ..