-
Notifications
You must be signed in to change notification settings - Fork 1
✔팔로잉 목록
최정균 edited this page Jul 16, 2020
·
18 revisions
메소드 | 경로 | 설명 |
---|---|---|
GET | /profile/followingList/:profileIdx | 팔로잉 |
{
"Content-Type": "application/json"
}
52.79.90.119:3000/profile/followingList/1?pageStart=0&pageEnd=9
- pageStart : 목록 시작번호
- pageEnd : 목록 끝번호
{
"status": 200,
"success": true,
"message": "팔로우 목록 조회 성공",
"data": [
{
"profileIdx": 1,
"profileImg": "https://outsopt26.s3.ap-northeast-2.amazonaws.com/1594497994285.jpg",
"profileName": "winter",
"profileGender": "female",
"profileNeutral": "false",
"profileAge": 10,
"profileWeight": "3"
},
{
"profileIdx": 2,
"profileImg": "https://outsopt26.s3.ap-northeast-3.amazonaws.com/1594497994285.jpg",
"profileName": "spring",
"profileGender": "female",
"profileNeutral": "true",
"profileAge": 2,
"profileWeight": "3"
}
]
}
- profileIdx : 프로필인덱스(int)
- profileImg : 프로필이미지(StrinG)
- profileName : 프로필이름(String)
- profileGender : 고양이 성별(String)
- profileNeutral : 고양이 중성화(String)
- profileAge : 고양이 나이(int)
- profileWeight : 고양이 몸무게(String)
- 데이터 반환 에러
{
"status": 400,
"success": false,
"message": "팔로잉 목록 조회 실패"
}