해시태그로 sns상의 정보들을 조회하고 통계를 조회할 수 있는 서비스
pip install -r requirements.txt
- https://djecrety.ir/ 에서 django secret_key 생성 후 .env/SECRET_KEY에 복사
SECRET_KEY="secret-key"
description | method | url | permission |
---|---|---|---|
회원가입 | POST |
/api/v1/users/register/ | AllowAny |
로그인 | POST |
/api/v1/users/login/ | AllowAny |
로그아웃 | POST |
/api/v1/users/logout/ | IsAuthenticated |
게시글 목록 조회 | GET |
/api/v1/boards/?query_params | AllowAny |
게시글 작성 | POST |
/api/v1/boards/write/ | IsAuthenticated |
특정 게시글 조회 | GET |
/api/v1/boards/<content_id>/ | IsAuthenticated |
특정 게시글 좋아요(취소 가능) | POST |
/api/v1/boards/<content_id>/ | IsAuthenticated |
특정 게시글 수정 | PUT |
/api/v1/boards/<content_id>/ | IsAuthenticated |
특정 게시글 삭제 | DELETE |
/api/v1/boards/<content_id>/ | IsAuthenticated |
특정 게시글 url로 좋아요 증가(무제한) | GET |
api/v1/likes/<content_id>/ | AllowAny |
특정 게시글 공유 | GET |
api/v1/share/<content_id>/ | IsAuthenticated |
통계 | GET |
api/v1/boards/analytics/?query_params | IsAuthenticated |
<content_id> = int:content_id