/api/auth/signup
{
“username”:string(NotNull),
”password”:string(NotNull),
“email”:string(NotNull)
}
{
"success": true,
"httpStatus": "OK",
"responseBody": {
"data": "singup success",
"errorResponse": null
}
}
/api/auth/login
{
“username”:string(NotNull),
“password”:string(NotNull)
}
/api/users/{userId}
{
"success": true,
"httpStatus": "OK",
"responseBody": {
"data": {
"username": "test5",
"email": "test@test.com",
"introduce": "HI!"
},
"errorResponse": null
}
}
/api/users
Cookies {
Authorization
}
{
“username”:string(NotNull),
”password”:string(NotNull),
“email”:string(NotNull),
“introduce”:string(NotNull)
}
/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
}
}
/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
}
}
/api/posts
Cookies {
Authorization
}
{
“title”:string(NotNull),
“content”:string(NotNull)
}
/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
}
}
/api/posts/{postId}
Cookies {
Authorization
}
{
“title”:string(NotNull),
“content”:string(NotNull)
}
/api/posts/{postId}
Cookies {
Authorization
}
/api/posts/{postId}/likes
Cookies {
Authorization
}
/api/posts/{postId}/likes
Cookies {
Authorization
}
/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”
},
]
/api/posts/{postId}/comments
Cookies {
Authorization
}
{
“content”:string(NotNull)
}
/api/posts/{postId}/comments
Cookies {
Authorization
}
/api/posts/{postId}/comments/{commentId}
Cookies {
Authorization
}
/api/posts/{postId}/comments/{commentId}
Cookies {
Authorization
}
{
“content”:string(NotNull)
}
/api/posts/{postId}/comments/{commentId}
Cookies {
Authorization
}
content를 “삭제된 댓글입니다.” 로 변경
/api/posts/{postId}/comments/{commentId}/likes
Cookies {
Authorization
}
/api/posts/{postId}/comments/{commentId}/likes
Cookies {
Authorization
}
/api/posts/{postId}/{parentcommentid}/comments
Cookies {
Authorization
}
{
“content”:string(NotNull)
}