[Linux] curl 보다 편리한 HTTPie(Command Line HTTP Client) 설치방법 및 기본 사용법
터미널에서 curl 대신 HTTPie를 이용하면 API 테스트를 보다 쉽게 할 수 있다. 설치 방법 (macOS 기준) 사전 작업으로 brew 설치가 필요하다. (https://brew.sh/index_ko 참고) % brew update % brew install httpie 기본 사용법 (curl과 비교) 명령어 만으로도 http와 https로 구분하여 호출이 가능하다 % curl http://janes.shop % curl https://janes.shop % http janes.shop % https janes.shop Headers 설정은 url 뒤에 key:value 형태로 붙이면 된다. % curl -i -H "x-api-key:g54RfVnN2LX947pcgXnA4fc86WEZFDSGVIH..
Linux
2021. 11. 23. 19:03