/posts/liked
특정 유저가 좋아요한 게시글들 엔드포인트
특정 유저가 좋아요한 게시글들 요청
GET
https://blegram.vercel.app/api/posts/liked
Query Parameters
Name
Type
Description
nickname*
string
유저 닉네임
take*
number
탐색할 개수
lastIdx*
number
탐색 시작 위치
( 이전에 검색한 유저의 식별자 ( idx ) )
Cookies
Name
Type
Description
bat
JWT
엑세스 토큰을 갖는 쿠키 ( 10분 )
brt
JWT
리프레쉬 토큰을 갖는 쿠키 ( 7일 )
{
"message": "apple님의 게시글 5개를 가져왔습니다.",
"posts": [
{
"idx": 35,
"content": "#apple\n#blue",
"photos": "development/photos/chick_1685338872447.jpg|development/photos/parrot_1685338872456.jpg|development/photos/rabbit_1685338872458.jpg",
"createdAt": "2023-05-29T05:41:23.396Z",
"updatedAt": "2023-05-29T05:41:23.398Z",
"userIdx": 1,
// 게시글 작성자 정보
"user": {
"idx": 1,
"avatar": "development/photos/cat.jpg",
"nickname": "apple",
"followers": []
},
// 게시글에 좋아요 누른 사람들
"postLikers": [
{
"postLikerIdx": 1,
"postLikedIdx": 35,
"createdAt": "2023-05-29T05:50:07.149Z",
"updatedAt": "2023-05-29T05:50:07.151Z"
}
],
// 게시글에 북마크 누른 사람들
"bookMarkers": [
{
"bookmarkerIdx": 1,
"bookmarkedIdx": 35,
"createdAt": "2023-05-29T05:50:11.082Z",
"updatedAt": "2023-05-29T05:50:11.084Z"
}
],
// 게시글의 좋아요/댓글 총 개수
"_count": {
"comments": 0,
"postLikers": 1
}
},
{
"idx": 33,
"content": "#다람쥐\n#병아리\n#앵무새",
"photos": "development/photos/chick_1685109140687.jpg|development/photos/giraffe_1685109140696.jpg|development/photos/squirrel_1685109140697.jpg",
"createdAt": "2023-05-26T13:52:33.902Z",
"updatedAt": "2023-05-26T13:52:33.905Z",
"userIdx": 1,
"user": {
"idx": 1,
"avatar": "development/photos/cat.jpg",
"nickname": "apple",
"followers": []
},
"postLikers": [
{
"postLikerIdx": 1,
"postLikedIdx": 33,
"createdAt": "2023-05-26T13:53:01.915Z",
"updatedAt": "2023-05-26T13:53:01.916Z"
}
],
"bookMarkers": [],
"_count": {
"comments": 0,
"postLikers": 1
}
}
// ... 게시글들
]
}
{
"message": "로그인후에 접근해주세요!"
}
{
"message": "가능한 요청이 아닙니다.\n확인후에 다시 시도해주세요!"
}
{
"message": "서버측 문제입니다.\n잠시후에 다시 시도해주세요!"
}
Last updated