간단 api....
Good to know: All the methods shown below are synced to an example Swagger file URL and are kept up to date automatically with changes to the API.
회원가입
회원가입
POST
{{host}}/accounts/signup/
serializer사용 : class Userserializer(serializers.ModelSerializer): 생성해야됌
Request Body
Name | Type | Description |
---|---|---|
email* | ||
name* | char | |
password_confirm* | char | |
password* | chaar | |
birth_date | int | |
profile_pic | image |
로그인
로그인 토큰 정보확인
GET
{{host}}/accounts/login/
token -permission 로그인되었나 확인 후 토큰인증
Headers
Name | Type | Description |
---|---|---|
Authorization* | Key | |
"Bearer " + Access_Token_Access* | Value |
로그인 인풋값 보내고 토큰생성-서버에서 클라이언트로 토큰정보전달
POST
{{host}}/accounts/login/
token -> TokenObtainPairView를 통해 포스팅 보내고
Path Parameters
Name | Type | Description |
---|---|---|
email* | 이메일 | |
password* | char |
로그아웃 : JWT로 JS로 브라우저에서 관리/ 따로 api필요없음
Last updated