[GET] 사용자 게시물 리스트 간단 조회 - GreenByMe/GreenByMe_Server GitHub Wiki
사용자 게시물 리스트 간단 조회
| 메소드 |
경로 |
짧은설명 |
| GET |
/api/posts/users/{userId} |
사용자 게시물 리스트 간단 조회 |
요청 헤더
content-type: application/json
요청 파라미터
userId: 사용자 Id
응답 바디
조회 성공
[
{
"postId": 24,
"nickName": "angelHack",
"picture": "http://ec2-13-58-104-154.us-east-2.compute.amazonaws.com:8080/api/posts/images/KakaoTalk_20190509_010954834.jpg",
"thumbsUp": 0
},
{
"postId": 28,
"nickName": "angelHack",
"picture": "http://ec2-13-58-104-154.us-east-2.compute.amazonaws.com:8080/api/posts/images/dfdf3123.png",
"thumbsUp": 0
},
{
"postId": 31,
"nickName": "angelHack",
"picture": "string",
"thumbsUp": 0
},
{
"postId": 33,
"nickName": "angelHack",
"picture": "string",
"thumbsUp": 0
}
]