-
Notifications
You must be signed in to change notification settings - Fork 0
웹툰목록
HwangJaeSuk edited this page Jun 9, 2019
·
1 revision
[GET] ~/webtoon/{category}
메소드 | 파라미터명 | 설명 |
---|---|---|
header | Content-Type | application/json |
query string | category | 웹툰 카테고리의 값 |
웹툰 카테고리의 값 인기의 경우->1, 신작의 경우->2, 완결의 경우->3으로 분류
{
"status": 200,
"success": true,
"message": "웹툰 조회 성공",
"data": [
{
"webtoonIdx": 1,
"webtoonName": "대치동 일타강사",
"thumbnail": "https://sopt24server.s3.ap-northeast-2.amazonaws.com/1560063148414.jpeg",
"userName": "송예슬",
"likeCount": 0
},
{
"webtoonIdx": 2,
"webtoonName": "대디보이",
"thumbnail": "https://sopt24server.s3.ap-northeast-2.amazonaws.com/1560063252789.png",
"userName": "이록",
"likeCount": 0
}
]
}
category의 값이 1, 2, 3 이외의 값이 들어올 경우
{
"status": 400,
"success": false,
"message": "파라미터 값이 잘못되었습니다"
}
DB 삽입 시에 에러가 생긴 경우(서버파트에서 만든 에러)
{
"status": 600,
"success": false,
"message": "웹툰 작성 실패"
}