-
Notifications
You must be signed in to change notification settings - Fork 1
✔새로 나온 모임
Gyunny edited this page Sep 20, 2020
·
16 revisions
메소드 | 경로 | 설명 |
---|---|---|
GET | /main/new | 새로나온 모임 |
{
"Content-Type": "application/json",
"token" : "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZHgiOjEsImlhdCI6MTU5ODAwNTI2OCwiZXhwIjoxNTk4MDA4ODY4LCJpc3MiOiJvdXItc29wdCJ9.x-s0VNnP9c_qecaUE8-WvWMsVERhf9DU0w8gRbJt1ew"
}
- token : 엑세스 토큰 (로그인 한 유저면 보내고, 비로그인 유저면 보내지 않아도 됨)
52.79.90.119:3002/main/new?pageStart=0&pageEnd=10
- pageStart : 목록 시작번호 (0부터 시작(불러올 개수가 20개라면) 0, 20, 40. . .)
- pageEnd : 목록 개수 (리스트 불러오기 위한 개수 ex : 20개 불러온다면 20 )
{
"status": 200,
"success": true,
"message": "메인화면 조회 성공입니다",
"data": {
"newRoomList": [
{
"roomIdx": 1,
"thumbnail": "http:~~~",
"authors": "카카오",
"title": "운다고 달라지는 일은 아무것도 없겠지만(리커버)",
"info" : "한줄소개1",
"nickName" : "닉네임"
},
{
"roomIdx": 2,
"thumbnail": "http:~~~",
"authors": "a",
"title": "book",
"info" : "한줄소개1",
"nickName" : "닉네임2"
},
{
"roomIdx": 3,
"thumbnail": "http:~~~",
"authors": "d",
"title": "maru",
"info" : "한줄소개2",
"nickName" : "닉네임2"
}
]
}
}
- roomIdx : 모임 인덱스
- authors : 책 저자
- title : 책 제목
- thumbnail : 책 이미지
- info : 책 한줄소개
- nickName : 방장 닉네임
- 서버에러
{
"status": 500,
"success": false,
"message": "서버에러 입니다"
}