GET /board
Request
page: 현재 페이지
title: 검색할 게시글의 제목
Response
{
"boardList" : [
{
"boardId": "글 아이디",
"title": "글 제목",
"createDate": "2021-08-16 10:00:00"
}, {
...
}
],
"total": 50
}
GET /board/:boardId
Request
boardId: 게시글 아이디
Response
{
"board": {
"boardId": 1
"title": "글 제목",
"content": "글 내용",
"createDate": "2021-08-16 08:00:00",
"comments":
[{
"commentId": 1
"content": "1번 댓글 내용"
}, {
"commentId": 2
"content": "2번 댓글 내용"
}]
}
}
POST /board
Request
{
"title": "글 제목",
"content": "내용",
"password": 1234
}
Response
{
"board": {
"boardId": 1
}
}