-
Notifications
You must be signed in to change notification settings - Fork 1
✔ 기록용 검색
최정균 edited this page Jul 16, 2020
·
7 revisions
메소드 | 경로 | 설명 |
---|---|---|
POST | /search/toWrite/:profileIdx | 리뷰를 남기기 위해서 제품을 검색합니다(내가 남긴 리뷰는 나오지 않음) |
![](https://user-images.githubusercontent.com/45676906/87584993-55740c80-c719-11ea-9519-95a8f923c300.png)
{
"Content-Type": "application/json"
}
{
"searchKeyword": "내추럴발란스",
"pageStart" : 0,
"pageEnd" : 9,
}
- searchKeyword : 검색키워드(만약 socnfjf이라 치면 내추럴로 변환)
- pageStart : 페이지 시작번호
- pageEnd : 페이지 끝번호
{
"status": 200,
"success": true,
"message": "캣푸드 검색 성공",
"data": [
{
"foodIdx": 1,
"foodImg": "http://sanxia.co.kr/wys2/file_attach_thumb/2020/05/18/1589779304-95-0_Y_7_470x470_100_5.jpg",
"foodManu": "내추럴",
"foodName": "발란스",
"foodDry" : "습식",
"foodMeat1" : "연어",
"foodMeat2" : "참치"
},
{
"foodIdx": 2,
"foodImg": "http://sanxia.co.kr/wys2/file_attach_thumb/2020/05/18/1589779304-95-0_Y_7_470x470_100_5.jpg",
"foodManu": "발란스",
"foodName": "내추럴",
"foodDry" : "건식",
"foodMeat1" : "참치",
"foodMeat2" : "연어"
}
]
}
- foodIdx : 캣푸드 인덱스 (int)
- foodImg : 캣푸드 상세 이미지 (String)
- foodManu : 캣푸드 제조사 (String)
- foodName : 캣푸드 이름 (String)
- foodDry : 캣푸드 습식여부(String)
- foodMeat1 : 캣푸드 주육류1(String)
- foodMeat2 : 캣푸드 주육류2(String)
- 데이터 반환 에러
{
"status": 400,
"success": false,
"message": "제품 검색 실패"
}
ㅤ