/api/v1/comment
Authorization Bearer jwt…
{
“postId”: 게시글 id
“content”: 댓글 내용
}
{
“id”: 댓글 id,
“content” : 댓글 내용,
“author” : 댓글 작성,
“createdAt” : 작성일
}
{
“message” : 권한이 없습니다.
}
/api/v1/comment
Authorization Bearer jwt…
{
“id” : 댓글 id
“content”: 댓글 내용
}
{
“id”: 댓글 id,
“content” : 댓글 내용,
“author” : 댓글 작성,
“createdAt” : 작성일
}
{
“message” : 권한이 없습니다.
}
/api/v1/comment/{id}
Authorization Bearer jwt…
{
“message” : 댓글 삭제 성공 메시지
}
{
“message” : 권한이 없습니다.
}
/api/v1/comment/{postId}
page=페이지 인덱스
size=페이지 사이즈
{
“data”: [
{
“id”: 댓글 id,
“content” : 댓글 내용,
“author” : 댓글 작성,
“createdAt” : 작성일
}
],
“totalElement” : 게시글 총 개수,
“totalPage” : 게시글 총 페이지 수,
“currentPage” : 현재 페이지,
“size” : 페이지 크기
}
/api/v1/posts
{
“size”: 10,
“page”: 0,
“keyword”: “검색어”
}
{
“data”: [
{
“id” : 게시글 id,
“title” : 게시글 제목,
“createdAt” : 게시글 생성일
}
],
“totalElement” : 게시글 총 개수,
“totalPage” : 게시글 총 페이지 수,
“currentPage” : 현재 페이지,
“size” : 페이지 크기
}
/api/v1/post
Authorization Bearer jwt…
{
“title”: 게시글 제목,
“content”: 게시글 내용
}
{
“id”: 게시글 id,
“title”: 게시글 제목,
“content”: 게시글 내용,
“createdAt”: 게시글 생성일,
“activatedAt”: 게시글 수정일
}
{
“message” : 권한이 없습니다.
}
/api/v1/post/{id}
Authorization Bearer jwt…
{
“title”: 게시글 제목,
“content”: 게시글 내용
}
{
“id”: 게시글 id,
“title”: 게시글 제목,
“content”: 게시글 내용,
“createdAt”: 게시글 생성일,
“activatedAt”: 게시글 수정일
}
{
“message” : 권한이 없습니다.
}
/api/v1/post/{id}
{
“id”: 게시글 id,
“title”: 게시글 제목,
“content”: 게시글 내용,
“createdAt”: 게시글 생성일,
“activatedAt”: 게시글 수정일
}
/api/v1/post/{id}
Authorization Bearer jwt…
{
“message”: 게시글 삭제 메시지
}
{
“message” : 권한이 없습니다.
}
/api/v1/profile/{id}
Authorization Bearer jwt…
/api/v1/profile/{id}
Authorization Bearer jwt…
/api/v1/login
{
“username” : 유저이름,
“password” : 비밀번호
}
HEADER
Authorization=Bearer jwt…access
Refresh_Authorization=Bearer jwt…refresh
/api/v1/signup
{
"username": 유저이름,
"password": 비밀번호,
"intro": 간단 자기소개,
"email": 이메일,
"code" : 8자리 이메일 인증 코드
}
/api/v1/refresh
Authorization Bearer refreshToken_jwt….
HEADER
Authorization=Bearer jwt…access
Refresh_Authorization=Bearer jwt…refresh
{
“message”: 토큰이 유효하지 않습니다.
}
/api/v1/signout
Authorization Bearer refreshToken_jwt….
{
"message":"탈퇴했습니다."
}
{
“message” : 권한이 없습니다.
}
/api/v1/signup/email
{
"email": "이메일"
}
{
“message”: test@spa.com을 확인하세요
}
{
“message”: 입력을 확인해주세요.
}
{
“message”: 이메일 전송에 실패했습니다.
}