본문으로 바로가기

json 테스트 도구

category 기타자료 2019. 4. 26. 17:28

postman

 

https://www.getpostman.com/

 

Postman | API Development Environment

Postman is the only complete API development environment, for API developers, used by more than 6 million developers and 100,000 companies worldwide. Postman makes working with APIs faster and easier by supporting developers at every stage of their workflo

www.getpostman.com

 

 

설치 (centOS7)

다운로드

wget https://dl.pstmn.io/download/latest/linux64 -O postman.tar.gz

 

압축풀기

sudo tar -xzf postman.tar.gz -C /opt

 

설치

sudo ln -s /opt/Postman/Postman /usr/bin/postman

 

실행

postman

 

 

 

바로가기 생성

경로이동

cd /usr/share/applications

로가

 

postman.desktop 파일 생성

sudo vi postman.desktop

 

 

 

postman.desktop에 내용 추가

 

[Desktop Entry]
Encoding=UTF-8
Name=Postman
Exec=postman
Icon=/opt/Postman/app/resources/app/assets/icon.png
Terminal=false
Type=Application
Categories=Development

 

 

 

 

프로그램-개발에 들어가서 바로가기가 생긴 것을 확인

 

 

 

원문 링크 : https://d2fault.github.io/2018/08/03/20180803-install-postman-centos/