-
Notifications
You must be signed in to change notification settings - Fork 1
[GET] 식재료상세
owenyi edited this page Oct 30, 2020
·
2 revisions
URL
/api/ingredients/getIngredients?idx=2
RESPONSE
key | type | description | remark |
---|---|---|---|
idx | int | 인덱스 | |
name | str | 식재료명 | |
expiration | int | 보관기한 | |
season | str | 제철 | |
tipPurchase | str | 구매방법 | |
tipCook | str | 조리방법 | |
tipStorage | str | 보관방법 |
RESPONSE BODY
idx=2
{
"res_State": "success",
"res_Msg": "get_Ingredients_success",
"res_Data": [
{
"idx": 2,
"name": "산마늘",
"expiration": 30,
"season": "3~5월",
"tipPurchase": "잎에 수분감이 있고 짙은 녹색이 된것을 고릅니다. ",
"tipCook": " 장아찌, 쌈, 무침, 샐러드로 조리 가능합니다. ",
"tipStorage": "산마늘 잎 사이사이에 흙과 불순물을 여러 번 씻어 제거한 후 줄기의 끝 부분은 제거한 후 보관합니다."
}
]
}