Skip to content

userInfo

SimJungUk edited this page Jul 10, 2019 · 2 revisions

홈 화면 유저 정보

메소드 경로 설명
GET /home/userInfo 홈 화면 유저 정보

요청 헤더

Content-Type: application/json
Authorization: Jwt Token Value(선택)

응답 바디

회원 유저 정보 조회 성공

{
    "status": 200,
    "success": true,
    "message": "성공",
    "data": {
        "nickname": "하리보냠냠",
        "hitSongCount": 0,
        "rateSongCount": 0,
        "totalPoint": 0,
        "auth": true
    }
}

비회원 유저 정보 조회 성공

{
    "status": 200,
    "success": true,
    "message": "성공",
    "data": {
        "nickname": "",
        "hitSongCount": 0,
        "rateSongCount": 0,
        "totalPoint": 0,
        "auth": false
    }
}
Clone this wiki locally