Skip to content

Commit

Permalink
mission : 3주차 과제 제출
Browse files Browse the repository at this point in the history
  • Loading branch information
김석찬 authored and 김석찬 committed Oct 10, 2024
1 parent c763ae7 commit f93f26c
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
Binary file added mission/chapter03/image.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
27 changes: 27 additions & 0 deletions mission/chapter03/mission.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
| API Endpoint | Request Body | Request Header | query String | Path variable |
| --- | --- | --- | --- | --- |
| 홈화면
GET /home/main | | Authorization : accessToken (String) | ?id=’1’ | |
| 마이 페이지 리뷰 작성
POST /my-page/reviews/create | "{
""title"" : ""string"",
""contents"" : ""string"",
""rating"" : ""double"",
""review-image"" : ""string_url""
}" | Authorization : accessToken (String) | | |
| 미션 목록 조회
GET /missions | {
"region-id": "string”
} | Authorization : accessToken (String) | | |
| 미션 성공 누르기
POST /missions/{mission-id}/compelete | {
"user-id" : "long",
"mission-id" : "long",
"status" : "완료"
} | Authorization : accessToken (String) | | /missions/{mission-id}/compelete |
| 회원 가입하기
POST /members/create | {
"email" : "string","name" : "string","nickname" : "string","gender" : "enum","region" : "string","address" : "string"
} | | | |

- ![2021_04_user_count](./image.png)

0 comments on commit f93f26c

Please sign in to comment.