-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrequest.http
More file actions
71 lines (55 loc) · 1.19 KB
/
Copy pathrequest.http
File metadata and controls
71 lines (55 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
### 회원가입 (성공)
POST http://localhost:8080/api/users/signup
Content-Type: application/json
{
"email": "email@urssu.com",
"password": "password",
"username": "username"
}
###
### 회원가입 (중복 이메일 → 400 에러 예상)
POST http://localhost:8080/api/users/signup
Content-Type: application/json
{
"email": "email@urssu.com",
"password": "anotherpass",
"username": "anothername"
}
###
### 게시글 작성 (성공)
POST http://localhost:8080/api/posts
Content-Type: application/json
{
"email": "email@urssu.com",
"password": "password",
"title": "title",
"content": "content"
}
###
### 게시글 작성 (실패: title 공백)
POST http://localhost:8080/api/posts
Content-Type: application/json
{
"email": "email@urssu.com",
"password": "password",
"title": " ",
"content": "content"
}
###
### 수정 요청
PUT http://localhost:8080/api/posts/1
Content-Type: application/json
{
"email": "email@urssu.com",
"password": "password",
"title": "수정된 제목",
"content": "수정된 본문"
}
###
### 삭제 요청
DELETE http://localhost:8080/api/posts/1
Content-Type: application/json
{
"email": "email@urssu.com",
"password": "password"
}