에임에서의 기록 백업

This commit is contained in:
2026-04-01 15:11:05 +09:00
parent be892052e2
commit 4bafee36ee
251 changed files with 3726 additions and 253 deletions
@@ -0,0 +1,16 @@
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
}