Follow

팔로우 / 팔로잉

팔로잉 조회

GET 52.78.77.1:8000/accounts/follow/

현재 로그인한 유저가 팔로잉한 유저들 조회

[
    {
        "id": 6,
        "created_at": "2023-11-09T04:20:26Z",
        "follower": 29,
        "following": 26
    },
    {
        "id": 7,
        "created_at": "2023-11-09T04:20:36Z",
        "follower": 29,
        "following": 3
    }
]

팔로우하기 / 팔로우 취소

POST 52.78.77.1:8000/accounts/follow/

팔로우 되어있다면 언팔로우하고, 팔로우 되어있지 않다면 새로 팔로우

Request Body

Name
Type
Description

following_id*

int

팔로잉한 아이디

{
    "messages": "Followed Successfully"
}

{
    "messages": "Unfollowed Successfully"
}

Last updated