Giter Club home page Giter Club logo

django-auth-with-jwt's Introduction

Django Authentication with JWT Build Status

First steps

  1. Login into your database and delete all _user or _users tables with the command:
psql -h localhost -p 55xx -U user_name db_name


> DROP TABLE thenameofyourdb CASCADE;
  1. Make a new python environment with the command:
pyenv virtualenv 3.10.0 new_env
pyenv activate new_env
eval "$(pyenv init --path)"
  1. Import your python dependencies with:
pip install -r requirements.txt

or instead:

pip install -r requirements2.txt

or:

pip install django djangorestframework djangorestframework-simplejwt PyJWT django-cors-headers mailer drf-yasg psycopg2-binary
  1. Make your migrations:
python manage.py makemigrations
python manage.py migrate
  1. Run with your server:
python manage.py runserver ip:port

Register

Create a new user with a POST request to the following endpoint:

/api/register

Using a Content-Type: application/json header with following JSON structure:

{
  "username": "username",
  "email": "[email protected]",
  "password: "password"
}

Login

Login with a POST request to the following endpoint:

/api/login

Using a Content-Type: application/json header with following JSON structure:

{
  "email": "[email protected]",
  "password: "password"
}

Logout

Login with a POST request to the following endpoint:

/api/logout

Using a Content-Type: application/json header with following JSON structure:

{
  "email": "[email protected]"
}

django-auth-with-jwt's People

Contributors

hazemsr avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.