MyDocker
devjingood
2025. 3. 12. 21:28
2025. 3. 12. 21:28
User
기능 |
method |
url |
description |
signup |
POST |
/accounts/api/signup/ |
회원가입 |
login |
POST |
/accounts/api/login/ |
로그인 |
logout |
POST |
/accounts/api/logout/ |
로그아웃 |
Profile
기능 |
method |
url |
description |
profile |
GET |
/accounts/api/profile/ |
프로필 조회 |
change_password |
POST |
/accounts/api/change_password/ |
비밀번호 변경 |
delete |
DELETE |
/accounts/api/delete/ |
회원 탈퇴 |
Post
기능 |
method |
url |
description |
post_list |
GET |
/posts/api/ |
게시글 목록 조회 |
create_post |
POST |
/posts/api/ |
게시글 생성 |
post_detail |
GET |
/posts/api/<int:post_id>/ |
게시글 상세 조회 |
update_post |
PUT |
/posts/api/<int:post_id>/ |
게시글 수정 |
delete_post |
DELETE |
/posts/api/<int:post_id>/ |
게시글 삭제 |
like_post |
POST |
/posts/api/like/<int:post_id>/ |
게시글 좋아요 |
기능 |
method |
url |
description |
create_comment |
POST |
/posts/api/comment/<int:post_id>/ |
댓글 생성 |
update_comment |
PUT |
/posts/api/comment/detail/<int:comment_id>/ |
댓글 수정 |
delete_comment |
DELETE |
/posts/api/comment/detail/<int:comment_id>/ |
댓글 삭제 |
create_reply |
POST |
/posts/api/comment/reply/<int:post_id>/<int:parent_id>/ |
대댓글 생성 |
like_comment |
POST |
/posts/api/comment/like/<int:comment_id>/ |
댓글 |