42openproject / whatdidyoueat

일별 식단 기록 웹 SNS 프로젝트 입니다
https://www.wheatoday.com
3 stars 0 forks source link

FEAT - GET explore #142

Closed myungjinki91 closed 2 years ago

myungjinki91 commented 2 years ago

아래 형식으로 response합니다.

{
  "success": "bool",
  "data": {
    "posts": [ //latest 순
      {
        "nickname": "str",
        "userPostTitle": "str",
        "createdAt": "str",
        "imageUrl": "str",
        "textContent": "str",
        "tagArr": "str"
      },
      {
        ...
      }
    ]
  },
  "message": "str"
}
myungjinki91 commented 2 years ago

123