-
Notifications
You must be signed in to change notification settings - Fork 4
무드캐처 REST API
황수민 edited this page Oct 3, 2022
·
12 revisions
| 웰컴메세지 | 회원가입 및 로그인 | 유저정보 | 게시물 | 아이템 | 댓글 | 대댓글 | 좋아요 | 알림 | 무드맵 |
|---|---|---|---|---|---|---|---|---|---|
| start | auth | users | posts | musinsa | comments | recomments | like | notice | map |
start
| Descriptions | Method | URI | FE | BE |
|---|---|---|---|---|
| 웰컴메세지 | GET | /api/start | 신수정 | 조권영 |
- 초기화면 웰컴메세지 랜덤문구 111개 출력
-{
status : 200,
msg:”초기 화면 조회 성공”,
data: {
startMsg : “무드캐처에 오신 걸 환영합니다!”
}
}-auth
| Descriptions | Method | URI | FE | BE |
|---|---|---|---|---|
| 회원가입 | POST | /api/auth/signup | 신수정 | 이수범 |
| 이메일 확인 | GET | /api/auth/checkEmail?email
|
신수정 | 이수범 |
| 인증번호 발송 | POST | /api/auth/sendEmail?type
|
신수정 | 이수범 |
| 인증번호 확인 | GET | /api/auth/check-authnum?email&authNum
|
신수정 | 이수범 |
| 로컬 로그인 | POST | /api/auth/login | 신수정 | 황수민 |
| 소셜 로그인 | GET | /api/auth/kakao | 신수정 | 조권영 |
| 닉네임 확인 | GET | /api/auth/checkNickname?nickname
|
신수정 | 이수범 |
| 닉네임/성별/나이 추가 | POST | /api/auth/detail | 신수정 | 이수범 |
| 비밀번호 변경 | PUT | /api/auth/updatePw?email&authNum
|
신수정 | 이수범 |
| 로그아웃 | DELETE | /api/auth/logout | 박준수 | 황수민 |
users
posts
| Descriptions | Method | URI | FE | BE |
|---|---|---|---|---|
| 게시물 작성 | POST | /api/posts | 박준수 | 조권영 |
| 이미지 업데이트 | PUT | /api/posts/:postId/image |
박준수 | 조권영 |
| 게시물 전체 조회 | GET | /api/posts/?userId&keyword&sort&type&gender&page&count&order
|
박준수,신수정 | 조권영 |
| 게시물 상세 조회 | GET | /api/posts/detail/:postId
|
박준수 | 황수민 |
| 게시물 수정 | PUT | /api/posts/:postId
|
박준수 | 조권영 |
| 게시물 삭제 | DELETE | /api/posts/:postId
|
박준수 | 조권영 |
| 대표 게시물 지정 | PATCH | /api/posts/:postId
|
박준수 | 조권영 |
| 대표 게시물 조회 | GET | /api/posts/rep?userId
|
박준수 | 황수민 |
| 인기 게시물 조회 | GET | /api/posts/popular | 박준수 | 황수민 |
| 명예의 전당 조회 | GET | /api/posts/honor?page&count
|
신수정 | 황수민 |