Git Product home page Git Product logo

django-rest-multitoken's Introduction

Django Rest Multitoken

Build Status Coverage Status

Implementation of Django Rest Framework token authentication that maintains multiple tokens for each user.

Currently the project is still under development. It was extracted from djoser library. Original draft version is available here.

Developed by SUNSCRAPERS with passion & patience.

Installation

Use pip:

pip install git+https://github.com/sunscrapers/django-rest-multitoken.git

Usage

Add multitoken app to INSTALLED_APPS:

INSTALLED_APPS = (
    'django.contrib.auth',
    (...),
    'rest_framework',
    'multitoken',
    (...),
)

Configure urls.py:

urlpatterns = patterns('',
    (...),
    url(r'^auth/', include('multitoken.urls')),
)

Set up Django Rest Framework authentication strategy to multitoken.authentication.TokenAuthentication:

REST_FRAMEWORK = {
    'DEFAULT_AUTHENTICATION_CLASSES': (
        'multitoken.authentication.TokenAuthentication',
    ),
}

Endpoints

Login

Use this endpoint to obtain user authentication token.

POST

URL: /login/

  • request

    • data:

      {{ User.USERNAME_FIELD }}

      password

      client

  • response

    • status: HTTP_200_OK (success)

    • data:

      auth_token

Logout

Use this endpoint to logout user and remove user authentication token.

POST

URL: /logout/

  • response

    • status: HTTP_200_OK (success)

Development

To start developing on django-rest-multitoken, clone the repository:

$ git clone [email protected]:sunscrapers/django-rest-multitoken.git

In order to run the tests create virtualenv, go to repo directory and then:

$ pip install -r requirements-test.txt

$ cd testproject

$ ./manage.py migrate

$ ./manage.py test

django-rest-multitoken's People

Contributors

haxoza avatar

Watchers

James Cloos avatar Debasish Bose 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.