Skip to content

sign_in

김은우 edited this page Mar 15, 2020 · 1 revision

로그인

Content-type : application/json

POST /api/user/login

Request

{
	"userId":"asdf123",
	"password":"123123",
}

Response

Success : 200

{
    "id": 1,
    "nickname": "abc",
    "userId": "asdf123",
    "Posts": [],
    "Followings": [],
    "Followers": [],
    "Image": null
}

Fail : 401 회원 정보가 없을 경우

     "존재하지 않는 사용자입니다!"

Fail : 401 비밀번호가 틀릴 경우

     "비밀번호가 틀립니다."
Clone this wiki locally