본문 바로가기
IT Tech/Tools

How to follow redirects using cURL (API Testing Tool)

by 겸손하게 빚진자로, 밝게 인사 2021. 12. 20.
728x90

웹페이지 호출
curl 주소
ex) curl www.google.co.kr

Google

www.google.co.kr


웹페이지 호출 상세하게 결과 보기
curl -v 주소
ex) curl -v www.google.co.kr


-L옵션 활용하여 웹페이지 리다이렉트 추적하기
curl -L 주소
ex) curl -L www.google.co.kr

Google

www.google.co.kr


Curl online
https://reqbin.com

Online API Testing Tool | Test Your API Online

ReqBin is the world's most popular online API testing tool for REST, SOAP and HTTP APIs. Test your APIs right from your browser. No coding. No desktop app. See why 850'000 of users use ReqBin for testing their APIs online!

reqbin.com



-X옵션 활용하여 메서드 지정
curl -X GET -L www.google.co.kr

Google

www.google.co.kr



-H옵션을 활용하여 헤더 지정
curl -H 주소
ex) 컨텐츠를 json 포멧으로 변경
curl -H "Content-Type: application/json"




반응형

'IT Tech > Tools' 카테고리의 다른 글

모두의 뽑기대장  (0) 2022.04.13
[협업툴] 게더타운  (0) 2022.03.08
[vim] 윈도우에서 사용  (0) 2021.08.27
MobaxTterm  (0) 2021.08.26
pwntools  (0) 2021.08.14