Skip to content

업체 랭킹

suzzang edited this page Jul 12, 2019 · 5 revisions

업체 랭킹

송아영

Method URL Description
GET /store/rank/:lastIndex?storeCategoryIdx={storeCategoryIdx} 업체 랭킹
  • 요청 헤더

    Content-Type : application/json
    Authorization : token
  • 파라미터

    lastIndex :  요청(-1), 다음 요청(마지막 데이터의 store_idx)
  • 쿼리

    storeCategoryIdx : 업체 카테고리 idx
  • 응답 성공 (token O)

    {
        "message": "Success",
      "data": [
          {
              "store_idx": 58,
              "store_name": "블링쿡",
              "store_img": "https://yamyamgoods.s3.ap-northeast-2.amazonaws.com/store/2019/07/11/%EB%B8%94%EB%A7%81%EC%BF%A1.png",
              "store_url": "http://www.blingcook.com/main/index",
              "store_hashtags": [
                  "#뱃지",
                  "#각종명찰"
              ],
              "store_scrap_flag": false
          }
      ]
    }
  • 응답 성공 (token X)

    {
        "message": "Success",
      "data": [
          {
              "store_idx": 58,
              "store_name": "블링쿡",
              "store_img": "https://yamyamgoods.s3.ap-northeast-2.amazonaws.com/store/2019/07/11/%EB%B8%94%EB%A7%81%EC%BF%A1.png",
              "store_url": "http://www.blingcook.com/main/index",
              "store_hashtags": [
                  "#뱃지",
                  "#각종명찰"
              ],
              "store_scrap_flag": false
          }
      ]
    }
  • 응답 실패

    // status : 401
    {
       "message": "jwt expired"
    }
  • 비고

    업체 상세로 넘어가는 것을 위해 업체 url도 .
    token 유무에 따라 store_scrap_flag를 .
Clone this wiki locally