Answers for "django rest framework authentication"

0

django rest framework authentication

django rest framework authentication
===================================
REST_FRAMEWORK = {
    'DEFAULT_AUTHENTICATION_CLASSES': (
        # 'rest_framework.authentication.BasicAuthentication',
        # 'rest_framework.authentication.SessionAuthentication',
		# 'rest_framework.authentication.TokenAuthentication',
        # 'rest_framework_simplejwt.authentication.JWTAuthentication',
    )
}
Posted by: Guest on September-29-2021
0

basic authentication in REST api Dajngo

REST_FRAMEWORK = {
    'DEFAULT_AUTHENTICATION_CLASSES': [
        'rest_framework.authentication.BasicAuthentication',
        'rest_framework.authentication.SessionAuthentication',
    ]
}
Posted by: Guest on December-22-2020

Code answers related to "django rest framework authentication"

Python Answers by Framework

Browse Popular Code Answers by Language