Answers for "install simplejwt django"

0

install simplejwt django

$ pip install djangorestframework-simplejwt

REST_FRAMEWORK = {
    'DEFAULT_AUTHENTICATION_CLASSES': (
        'rest_framework_simplejwt.authentication.JWTAuthentication',
    )
}
Posted by: Guest on April-14-2022
0

simplejwt in django setup

REST_FRAMEWORK = {
    'DEFAULT_AUTHENTICATION_CLASSES': (
        ...
        'rest_framework_simplejwt.authentication.JWTAuthentication',
    )
}
Posted by: Guest on September-30-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language