Skip to content

✔ 모임이 많은 책

Gyunny edited this page Sep 5, 2020 · 6 revisions
메소드 경로 설명
GET /main/popular 메인화면

Request Header

{
    "Content-Type": "application/json"
}

Response

< Success >

{
    "status": 200,
    "success": true,
    "message": "모임이 많은 책 조회 성공입니다",
    "data": {
        "popularRoomList": [
            {
                "thumbnail": "http:~~~",
                "authors": "카카오",
                "title": "운다고 달라지는 일은 아무것도 없겠지만(리커버)",
                "roomCount": 7
            },
            {
                "thumbnail": "http:~~~",
                "authors": "a",
                "title": "book",
                "roomCount": 1
            },
            {
                "thumbnail": "http:~~~",
                "authors": "d",
                "title": "maru",
                "roomCount": 1
            },
            {
                "thumbnail": "http:~~~",
                "authors": "v",
                "title": "곰돌이",
                "roomCount": 1
            }
        ]
    }
}
  • roomCount : 토론방 개수
  • authors : 책 저자
  • title : 책 제목
  • thumbnail : 책 이미지

< Fail >

  • 서버에러
{
    "status": 500,
    "success": false,
    "message": "서버에러 입니다"
}

ㅤㅤ