Skip to content

오늘 하루 저장이 가장 많이 된 테마목록 조회

Haely edited this page Nov 12, 2020 · 10 revisions

오늘 하루 저장이 가장 많이 된 테마목록 조회 (/main/themes)

메인

Request

URL

[GET] ~/main/themes

Header

메소드 파라미터 설명
Content-Type application/json
token {token} 토큰

토큰 있을 때(회원용), 토큰이 'guest'일 때(비회원용)


Response

Description

변수명 설명
themeIdx 테마 idx
theme 테마명
themeImg 테마 img
themeImgIdx 테마 img의 Idx
saves 테마 북마크 수
alreadyBookmarked 현재 사용자가 이 테마를 저장했는지(true: 저장함, false: 저장안함) - 비회원일 때는 false
sentenceNum 테마에 속해있는 문장 수

SUCCESS

{
    "status": 200,
    "success": true,
    "message": "오늘 하루 저장이 가장 많이 된 테마 목록 조회 성공",
    "data": [
        {
            "themeIdx": 2,
            "theme": "새벽엔 새벽 감성, 밤엔 밤 감성?",
            "themeImg": "img3.jpg",
            "themeImgIdx": 2,
            "saves": 100,
            "alreadyBookmarked": true,
            "sentenceNum": 3
        },
        {
            "themeIdx": 1,
            "theme": "브랜딩이 어려울 때, 영감을 주는 문장",
            "themeImg": "img1.jpg",
            "themeImgIdx": 2,
            "saves": 197,
            "alreadyBookmarked": true,
            "sentenceNum": 3
        }
    ]
}

FAIL : 오늘 하루 저장이 가장 많이 된 테마 목록이 없을 경우

{
    "status": 400,
    "success": false,
    "message": "오늘 하루 저장이 가장 많이 된 테마가 없습니다."
}

FAIL : 토큰이 존재하지 않는 경우

{
    "status": 400,
    "success": false,
    "message": "토큰이 없습니다"
}

FAIL : 토큰의 형식이 잘못된 경우

{
    "status": 401,
    "success": false,
    "message": "유효하지 않은 토큰입니다"
}

FAIL : 토큰이 만료되었을 경우

{
    "status": 401,
    "success": false,
    "message": "만료된 토큰입니다"
}

FAIL : 서버 내부 에러의 경우

{
    "status": 600,
    "success": false,
    "message": "서버 내부 오류"
}
Clone this wiki locally