42openproject / whatdidyoueat

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

[3단계] API /explore 만들기 #123

Closed myungjinki91 closed 2 years ago

myungjinki91 commented 2 years ago

/explore

get

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

142