https://github.com/mr-won/postman
[Postman] Postman을 이용한 RESTful API 테스팅
https://github.com/mr-won/postman
postman postman-rest-api
Last synced: about 1 year ago
JSON representation
[Postman] Postman을 이용한 RESTful API 테스팅
- Host: GitHub
- URL: https://github.com/mr-won/postman
- Owner: mr-won
- Created: 2024-01-26T04:22:22.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-28T12:00:51.000Z (over 2 years ago)
- Last Synced: 2025-03-18T02:27:14.399Z (over 1 year ago)
- Topics: postman, postman-rest-api
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Postman
[Postman] Postman을 이용한 RESTful API 테스팅
```
Postman을 이용하면 간단하게 RESTful API를 테스트할 수 있다.
또 테스트를 저장해 API 스모크 테스팅용으로 사용할 수 있다.
```
## Postman 설치
[Postman 설치](https://www.postman.com/downloads/)

```
로그인 없이도 포스트맨을 사용할 수 있다.
+ 버튼을 누르고 www.google.com 홈페이지에 HTTP GET 요청을 날린 결과이다.
```

```
작성중인 springboot 어플리케이션을 실행한 후 포스트맨을 이용해서 localhost:8080 HTTP GET 요청을 보낸 결과이다.
```


```
오브젝트를 JSON 형태의 문자열의 요청 바디로 사용한 결과이다.
```
## 200 OK


## 400 Bad Request


```
@ResponseEntity를 사용하여 http status를 각각 200과 400으로 조작하여 http get 요청을 보낸 결과이다.
```