Skip to content

✔ 토론방 채팅 불러오기

yezgoget edited this page Sep 18, 2020 · 6 revisions
메소드 경로 설명
GET /message/:roomIdx 토론방 채팅 불러오기

Request Header

{
    "Content-Type": "application/json"
}

Request 형식 예시

    52.79.90.119:3002/message/:roomIdx?pageStart=1&pageEnd=40
  • pageStart : 목록 시작번호 (pagination 1, 41, 81, 121 . . .)
  • pageEnd : pageStart부터 출력하는 채팅 개수 (pagination 40)

Response

< Success >

{
    "status": 200,
    "success": true,
    "message": "토론방 참여가 가능합니다",
    "data": [
        {
            "nickName": "1",
            "msg": "c",
            "chatTime": "2020-10-09T15:00:00.000Z",
            "roomIdx": 1
        },
        {
            "nickName": "2",
            "msg": "h",
            "chatTime": "2020-10-09T15:00:00.000Z",
            "roomIdx": 1
        },
        {
            "nickName": "3",
            "msg": "a",
            "chatTime": "2020-10-09T15:00:00.000Z",
            "roomIdx": 1
        },
        {
            "nickName": "1",
            "msg": "dd",
            "chatTime": "2020-09-02T15:58:39.000Z",
            "roomIdx": 1
        }
    ]
}
  • nickName : 유저 닉네임
  • msg : 채팅내용
  • chatTime : 채팅 친 시간
  • roomIdx : 모임 인덱스

< Fail >

  • roomIdx 누락
{
    "status": 400,
    "success": false,
    "message": "필요한 값이 없습니다."
}