Public
Documentation Settings

SDAO API

GET게시글 - 게시글 n개 조회

http://localhost:8080/posts?pageNum=1&count=60
PARAMS
pageNum

1

지금 몇페이지 인지(1~ ...)

count

60

한페이지에 한번에 표시할 개수

GET게시글 - 게시글 조회

http://localhost:8080/posts/post?postId=62c04e44b8ca89e0621fd917
PARAMS
title
contents
media
create_date
modified_date
username
postId

62c04e44b8ca89e0621fd917

POST게시글 - 게시글 작성

http://localhost:8080/posts/post
Bodyraw (json)
json
{
    "username": "beeimp",
    "title": "게시글 제목",
    "contents": "게시글 내용",
    "tag": "Others"
}

POST게시글 - 댓글 작성

http://localhost:8080/posts/comment?postId=62b96b82227a070115104d55
PARAMS
postId

62b96b82227a070115104d55

Bodyraw (json)
json
{
    "postId" : "62b96b82227a070115104d55",
    "username": "sdao6",
    "comment": "코인파밍"
}
Loading