-
Notifications
You must be signed in to change notification settings - Fork 1
[GET] home rank
Danidani edited this page May 30, 2020
·
3 revisions
메소드 | 경로 |
---|---|
GET | /home/rank |
key | 설명 | 타입 | 비고 |
---|---|---|---|
recipe_img | 레시피 이미지 | String | NON-NULL |
recipe_name | 레시피명 | String | NON-NULL |
recipe_like | 좋아요 수 | INT | NON-NULL |
{
"status": 200,
"success": true,
"message": "성공",
"data": [
{
"recipe_title": "aaa",
"recipe_like": 3,
"recipe_img": "https://ccookccook.s3.ap-northeast-2.amazonaws.com/24c312f82313faaf1e4d5ef98761efcb1.jpg"
},
{
"recipe_title": "bbb",
"recipe_like": 7,
"recipe_img": "https://ccookccook.s3.ap-northeast-2.amazonaws.com/24c312f82313faaf1e4d5ef98761efcb1.jpg"
}
]
}
- INTERNAL SERVER ERROR
{
"status": 500,
"message": "서버 내부 에러"
}