4510784946
This reverts commit aec9ae8c43.
16 lines
325 B
Markdown
16 lines
325 B
Markdown
GET은 일반적으로 body 메시지가 없다.
|
|
( 사용할 수는 있는데 GET 메시지에 body가 허용되지 않는 서버들이 있음. )
|
|
|
|
##### 요청
|
|
GET /members/100 HTTP/1.1
|
|
Host: localhost:8080
|
|
|
|
|
|
##### 응답
|
|
HTTP/1.1 200 OK
|
|
Content-Type: application/json
|
|
Content-Length: 34
|
|
{
|
|
"username": "young",
|
|
"age": 20
|
|
} |