윌스너 실시간 상세요청 - Willson-2019/Willson-Server GitHub Wiki

URL

[GET] ~/api/v1/willsoner/list/realtime/matches/:match_idx

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

timer값 == 고민작성완료시간 + 5분


응답예시

성공

{
    "code": "success",
    "message": "success",
    "data": {
        "status": "init",
        "concern": {
            "nickname": "하이하이",
            "content": "취업은 해야 하는데 지금 해놓은 것은 없고 무슨 일을 해야 할 지도 모르겠고, 의욕을 생기게 하고 싶고 지금 해야 하는것이무엇인지 알고 싶다. 그리고 나름 삶의 이유라고 생각했던 것이 이제 사라지게 되어 좋아하는 일을 하지 못하게 되는 이 상황에 왜 살아가야 하는지 고민이 된다.",
            "time": "60",
            "timer": 1584003870000,
            "asker": {
                "gender": "여",
                "age": "20대 중반",
                "pic": "https://willson-v1.s3.ap-northeast-2.amazonaws.com/user_image/img_profile_w.png"
            },
            "subcategory": {
                "name": "짝사랑",
                "category": {
                    "name": "연애"
                }
            },
            "feelings": [
                {
                    "name": "행복해요"
                },
                {
                    "name": "자랑스러워요"
                }
            ],
            "direction": {
                "name": "문제를 해결하고 싶어요"
            }
        }
    }
}

5분 타이머가 만료되었을 경우

{
    "code": "time_out",
    "message": "Time out."
}

access token이 만료된 경우

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

결과를 찾지 못한 경우

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