Answers for "basic authentication in REST api Dajngo"

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 "BASIC"

Browse Popular Code Answers by Language