how to login with another account - Django REST framework code example

Example 1: basic authentication in REST api Dajngo

REST_FRAMEWORK = {
    'DEFAULT_AUTHENTICATION_CLASSES': [
        'rest_framework.authentication.BasicAuthentication',
        'rest_framework.authentication.SessionAuthentication',
    ]
}

Example 2: login system in django

LOGOUT_REDIRECT_URL = 'your_url'

Example 3: create login user django command

py manage.py  createsuperuser 
1=enter your userName
2=enter your email
3=enter your password
4=enter your password again 
5=for create user enter y (yes)

Tags:

Misc Example