유저 정보 - SOPT-hapdong/SEVER GitHub Wiki

유저정보

Request

URL

[GET] /auth/users/info

Header

메소드 파라미터 설명

Body

이름 자료형 설명

Response

Body

SUCCESS

이름 자료형 설명
status Int 상태 코드
success Boolean 성공 여부
message String 실행 결과
data JSON Object toke json
data
이름 자료형 설명
user_name String 유저 이름
user_univ String 학교 단과대/학번
posting_count Int 내가 쓴 글
comment_count Int 댓글 단 글
scrap_count Int 스크랩
user_image String 유저 사진
{
    "status": 200,
    "success": true,
    "message": "유저 정보 성공",
    "data": {
        "user_name": "익명의 대학생",
        "user_univ": "솝트대 19학번",
        "posting_count": 21,
        "comment_count": 21,
        "scrap_count": 21,
        "user_image": "https://sopt-server.s3.ap-northeast-2.amazonaws.com/1573884765891.png"
    }
}

FAIL : ID 오류

{
    "status": 400,
    "success": false,
    "message": "잘못된 요청입니다."
}

FAIL : 서버내부오류

{
    "status": 500,
    "success": false,
    "message": "유저 정보 실패"
}