Search
Duplicate

API 명세

Search
기능
Method
url
카테고리
완료여부
개발 담당
Request Header
Param
request
200
400
403
500
POST
/api/v1/comment
댓글 기능
완료
유동근
Authorization Bearer jwt…
{ “postId”: 게시글 id “content”: 댓글 내용 }
{ “id”: 댓글 id, “content” : 댓글 내용, “author” : 댓글 작성, “createdAt” : 작성일 }
{ “message” : 권한이 없습니다. }
PATCH
/api/v1/comment
댓글 기능
완료
유동근
Authorization Bearer jwt…
{ “id” : 댓글 id “content”: 댓글 내용 }
{ “id”: 댓글 id, “content” : 댓글 내용, “author” : 댓글 작성, “createdAt” : 작성일 }
{ “message” : 권한이 없습니다. }
DELETE
/api/v1/comment/{id}
댓글 기능
완료
유동근
Authorization Bearer jwt…
{ “message” : 댓글 삭제 성공 메시지 }
{ “message” : 권한이 없습니다. }
GET
/api/v1/comment/{postId}
댓글 기능
완료
유동근
page=페이지 인덱스 size=페이지 사이즈
{ “data”: [ { “id”: 댓글 id, “content” : 댓글 내용, “author” : 댓글 작성, “createdAt” : 작성일 } ], “totalElement” : 게시글 총 개수, “totalPage” : 게시글 총 페이지 수, “currentPage” : 현재 페이지, “size” : 페이지 크기 }
GET
/api/v1/posts
게시글 기능
완료
유동근
{ “size”: 10, “page”: 0, “keyword”: “검색어” }
{ “data”: [ { “id” : 게시글 id, “title” : 게시글 제목, “createdAt” : 게시글 생성일 } ], “totalElement” : 게시글 총 개수, “totalPage” : 게시글 총 페이지 수, “currentPage” : 현재 페이지, “size” : 페이지 크기 }
POST
/api/v1/post
게시글 기능
완료
신유섭
Authorization Bearer jwt…
{ “title”: 게시글 제목, “content”: 게시글 내용 }
{ “id”: 게시글 id, “title”: 게시글 제목, “content”: 게시글 내용, “createdAt”: 게시글 생성일, “activatedAt”: 게시글 수정일 }
{ “message” : 권한이 없습니다. }
PATCH
/api/v1/post/{id}
게시글 기능
완료
신유섭
Authorization Bearer jwt…
{ “title”: 게시글 제목, “content”: 게시글 내용 }
{ “id”: 게시글 id, “title”: 게시글 제목, “content”: 게시글 내용, “createdAt”: 게시글 생성일, “activatedAt”: 게시글 수정일 }
{ “message” : 권한이 없습니다. }
GET
/api/v1/post/{id}
게시글 기능
완료
신유섭
{ “id”: 게시글 id, “title”: 게시글 제목, “content”: 게시글 내용, “createdAt”: 게시글 생성일, “activatedAt”: 게시글 수정일 }
DELETE
/api/v1/post/{id}
게시글 기능
완료
신유섭
Authorization Bearer jwt…
{ “message”: 게시글 삭제 메시지 }
{ “message” : 권한이 없습니다. }
GET
/api/v1/profile/{id}
프로필 기능
장숭혁
Authorization Bearer jwt…
PATCH
/api/v1/profile/{id}
프로필 기능
장숭혁
Authorization Bearer jwt…
POST
/api/v1/login
인증기능
완료
장숭혁
{ “username” : 유저이름, “password” : 비밀번호 }
HEADER Authorization=Bearer jwt…access Refresh_Authorization=Bearer jwt…refresh
POST
/api/v1/signup
인증기능
완료
장숭혁
{ "username": 유저이름, "password": 비밀번호, "intro": 간단 자기소개, "email": 이메일, "code" : 8자리 이메일 인증 코드 }
GET
/api/v1/refresh
인증기능
완료
최창규
유동근
Authorization Bearer refreshToken_jwt….
HEADER Authorization=Bearer jwt…access Refresh_Authorization=Bearer jwt…refresh
{ “message”: 토큰이 유효하지 않습니다. }
DELETE
/api/v1/signout
인증기능
완료
최창규
유동근
Authorization Bearer refreshToken_jwt….
{ "message":"탈퇴했습니다." }
{ “message” : 권한이 없습니다. }
POST
/api/v1/signup/email
인증기능
완료
유동근
{ "email": "이메일" }
{ “message”: test@spa.com을 확인하세요 }
{ “message”: 입력을 확인해주세요. }
{ “message”: 이메일 전송에 실패했습니다. }