윌스너 프로필 조회 - Willson-2019/Willson-Server GitHub Wiki

URL

[GET] ~/api/v1/willsoner/mypage/profile

REQUEST PARAMETER NAME DESCRIPTION
header x-token 엑세스 토큰 access token

license_status/ link_status

  1. "waiting": 관리자 승인 대기 중
  2. "complete": 관리자 승인 완료
  3. "reject": 승인 요청 거절

승인 완료 되었을 경우만 인증 점수 지급


응답예시

성공

{
    "code": "success",
    "message": "success",
    "data": {
        "introduction": "윌슨 하이염",
        "experience": "장거리 연애 경험이 있습니다",
        "auth": 90,
        "asker": {
            "nickname": "ㅇ"
        },
        "subcategories": [
            {
                "idx": 2,
                "name": "갈등",
                "category": {
                    "idx": 1,
                    "name": "연애"
                }
            }
        ],
        "image": {
            "pic": "https://willson-v1.s3.ap-northeast-2.amazonaws.com/willsoner_image/willson_02.jpg"
        },
        "keywords": [
            {
                "idx": 1050,
                "name": "장거리"
            },
            {
                "idx": 1051,
                "name": "재회"
            }
        ],
        "willsoner_auth": {
            "auth_license": "157.1595162883019.01939.jpg",
            "auth_phone": null,
            "auth_email": "[email protected]",
            "auth_link": "willson.fun",
            "auth_media": null,
            "license_status": "complete",
            "link_status": "complete"
        }
    }
}

access token이 만료된 경우

{
    "code": "access_token_expired",
    "message": "Access token expired"
}

결과를 찾지 못한 경우

{
    "code": "not_found",
    "message": "Result not found"
}