HomeAboutMeBlogGuest
© 2025 Sejin Cha. All rights reserved.
Built with Next.js, deployed on Vercel
♥️
2기 최종 프로젝트 팀별 공간
/
[팀 08] 사이코
[팀 08] 사이코
/
📶
API 설계
/
📃
채팅방 메시지 조회
📃

채팅방 메시지 조회

Method
GET
URL Patterns
api/v1/chatRooms/{id}/messages
인증 필요 여부
O

요청

  • {id} : 채팅방 id
GET /api/v1/chatRooms/{id}/messages?offset={0}&limit={}

응답

[ { "userInfo": { "userId": 1, "username": "유재희", "profileImage": "https://lh3.googleusercontent.com/a/AItbvmmujg3pE4C3iRbHWRZCd-BtvUykZ2BaaIAuSoo7=s96-c" }, "content": "마지막 메세지", "createdAt": "2022-08-10T13:13:54" }, { "userInfo": { "userId": 3, "username": "testMan", "profileImage": "https://lh3.googleusercontent.com/a/AItbvmmRBO7OpOF-F-6FrAY-lP8FHJOWwC1n_GNyaNsH=s96-c" }, "content": "거래는 어떻게 할까요??", "createdAt": "2022-08-10T13:13:45" }, { "userInfo": { "userId": 1, "username": "유재희", "profileImage": "https://lh3.googleusercontent.com/a/AItbvmmujg3pE4C3iRbHWRZCd-BtvUykZ2BaaIAuSoo7=s96-c" }, "content": "네! 개 맘에 듭니다.", "createdAt": "2022-08-10T13:13:34" }, { "userInfo": { "userId": 3, "username": "testMan", "profileImage": "https://lh3.googleusercontent.com/a/AItbvmmRBO7OpOF-F-6FrAY-lP8FHJOWwC1n_GNyaNsH=s96-c" }, "content": "네 물건 좋죠?", "createdAt": "2022-08-10T13:13:25" }, { "userInfo": { "userId": 1, "username": "유재희", "profileImage": "https://lh3.googleusercontent.com/a/AItbvmmujg3pE4C3iRbHWRZCd-BtvUykZ2BaaIAuSoo7=s96-c" }, "content": "안녕하세요", "createdAt": "2022-08-10T13:13:14" }, { "userInfo": { "userId": 3, "username": "testMan", "profileImage": "https://lh3.googleusercontent.com/a/AItbvmmRBO7OpOF-F-6FrAY-lP8FHJOWwC1n_GNyaNsH=s96-c" }, "content": "안녕하세요", "createdAt": "2022-08-10T13:13:13" } ]
  • 응답시 메시지는 보낸 시간의 역순으로 조회됩니다