-
Notifications
You must be signed in to change notification settings - Fork 1
[Follow] 팔로워, 팔로이 리스트 불러오기
jujube0 edited this page Jan 7, 2021
·
3 revisions
GET /follow
name | type | description | required |
---|---|---|---|
token | String | 토큰 | O |
name | type | description |
---|---|---|
status | Int | |
success | Boolean | |
message | String | |
data | Data | 팔로잉 정보 |
followers
: 나를 팔로잉한 사람들 리스트
followees
: 내가 팔로우한 사람들 리스트
name | type | description |
---|---|---|
followers | Array | user |
followees | Array | user |
name | type | description |
---|---|---|
id | Int | user id |
nickname | String | |
profile_img | String |
{
"status": 200,
"success": true,
"message": "팔로워, 팔로이 가져오기 성공",
"data": {
"followers": [
{
"id": 3,
"nickname": "neity16",
"profile_img": null
}
],
"followees": [
{
"id": 1,
"nickname": "wlgus3",
"profile_img": null
}
]
}
}