Skip to content

팔로우 하기

jiss02 edited this page Jan 1, 2020 · 2 revisions

팔로우 하기

Request

URL

메소드 경로 설명
POST /profile/following 마음에 드는 유저 팔로우 하기

Header

Content-Type: application/json
token: JWT

Body

변수 타입 설명
othersIdx INT 팔로잉 할 사람
{
	"othersIdx": 2
}

Response

Body

SUCCESS

{
    "success": true,
    "message": "팔로잉 작성 성공",
    "data": {
        "fieldCount": 0,
        "affectedRows": 1,
        "insertId": 4,
        "serverStatus": 2,
        "warningCount": 0,
        "message": "",
        "protocol41": true,
        "changedRows": 0
    }
}

FAIL

{
    "status": 336,
    "success": false,
    "message": "존재하지 않는 유저 입니다."
}