-
Notifications
You must be signed in to change notification settings - Fork 1
[GET] recipe :recipe_idx
Danidani edited this page May 30, 2020
·
4 revisions
메소드 | 경로 |
---|---|
GET | /recipe/:recipe_idx |
key | 설명 | 타입 | 비고 |
---|---|---|---|
recipe_idx | 레시피 인덱스 | Int | NON-NULL |
key | 설명 | 타입 | 비고 |
---|---|---|---|
recipe_title | 레시피 제목 | String | NON-NULL |
recipe_like | 좋아요 | INT | NON-NULL |
recipe_category | 카테고리 | INT | NON-NULL |
recipe_img | 레시피 이미지 | String | NON-NULL |
recipe_des | 이미지별 설명 | String | NON-NULL |
{
"status": 200,
"success": true,
"message": "성공",
"data": {
"recipe": [
{
"recipe_title": "aaa",
"recipe_like": 7,
"recipe_category": 1
}
],
"detailImg": [
{
"recipe_img": "https://ccookccook.s3.ap-northeast-2.amazonaws.com/24c312f82313faaf1e4d5ef98761efcb1.jpg",
"recipe_des": "ddddd"
},
{
"recipe_img": "https://ccookccook.s3.ap-northeast-2.amazonaws.com/24c312f82313faaf1e4d5ef98761efcb1.jpg",
"recipe_des": "eee"
}
]
}
}
- INTERNAL SERVER ERROR
{
"status": 500,
"message": "서버 내부 에러"
}