Search
Duplicate

API

Search
Name
Method
API
Request Header
Request Body
Response Body
Category
비고
POST
/api/auth/signup
{ “username”:string(NotNull), ”password”:string(NotNull), “email”:string(NotNull) }
{ "success": true, "httpStatus": "OK", "responseBody": { "data": "singup success", "errorResponse": null } }
user
POST
/api/auth/login
{ “username”:string(NotNull), “password”:string(NotNull) }
user
GET
/api/users/{userId}
{ "success": true, "httpStatus": "OK", "responseBody": { "data": { "username": "test5", "email": "test@test.com", "introduce": "HI!" }, "errorResponse": null } }
user
PATCH
/api/users
Cookies { Authorization }
{ “username”:string(NotNull), ”password”:string(NotNull), “email”:string(NotNull), “introduce”:string(NotNull) }
user
GET
/api/posts
{ "success": true, "httpStatus": "OK", "responseBody": { "data": [{ "postId": 1, "writerId": 1, "writer": "username", "title": "post test title", "content": "post test content", "likeCount": 3, "recentLikeUser": "username", "myLike": true, "lastModifiedDate": "2023-11-23 06:21:56" }], "errorResponse": null } }
post
GET
/api/users/{userId}/posts
{ "success": true, "httpStatus": "OK", "responseBody": { "data": [{ "postId": 1, "writerId": 1, "writer": "username", "title": "post test title", "content": "post test content", "likeCount": 3, "recentLikeUser": "username", "myLike": true, "lastModifiedDate": "2023-11-23 06:21:56" }], "errorResponse": null } }
post
POST
/api/posts
Cookies { Authorization }
{ “title”:string(NotNull), “content”:string(NotNull) }
post
GET
/api/posts/{postId}
{ "success": true, "httpStatus": "OK", "responseBody": { "data": { "postId": 1, "writerId": 1, "writer": "username", "title": "post test title", "content": "post test content", "likeCount": 3, "recentLikeUser": "username", "myLike": true, "lastModifiedDate": "2023-11-23 06:21:56" }, "errorResponse": null } }
post
PATCH
/api/posts/{postId}
Cookies { Authorization }
{ “title”:string(NotNull), “content”:string(NotNull) }
post
DELETE
/api/posts/{postId}
Cookies { Authorization }
post
POST
/api/posts/{postId}/likes
Cookies { Authorization }
like
DELETE
/api/posts/{postId}/likes
Cookies { Authorization }
like
GET
/api/posts/{postId}/comments
[ { “commentId”:long, “parentCommentId”:long, “postId”:long, “depth”:int, “writerId”:userId, “writer”:userName, “content”:string, “likeUsers”: [ { userId:int, userName:string }, ], “likeCount:int, “lastModifiedDate”:”YYYY-MM-DD hh:mm:ss” }, ]
comment
POST
/api/posts/{postId}/comments
Cookies { Authorization }
{ “content”:string(NotNull) }
comment
GET
/api/posts/{postId}/comments
Cookies { Authorization }
comment
GET
/api/posts/{postId}/comments/{commentId}
Cookies { Authorization }
comment
PATCH
/api/posts/{postId}/comments/{commentId}
Cookies { Authorization }
{ “content”:string(NotNull) }
comment
DELETE
/api/posts/{postId}/comments/{commentId}
Cookies { Authorization }
comment
content를 “삭제된 댓글입니다.” 로 변경
POST
/api/posts/{postId}/comments/{commentId}/likes
Cookies { Authorization }
like
DELETE
/api/posts/{postId}/comments/{commentId}/likes
Cookies { Authorization }
like
POST
/api/posts/{postId}/{parentcommentid}/comments
Cookies { Authorization }
{ “content”:string(NotNull) }
comment