“Django CSRF nie powiodło się” Kod odpowiedzi

Django CSRF nie powiodło się

from rest_framework.authentication import SessionAuthentication, BasicAuthentication 

class CsrfExemptSessionAuthentication(SessionAuthentication):

    def enforce_csrf(self, request):
        return  # To not perform the csrf check previously happening
Puzzled Puffin

Django CSRF nie powiodło się

'DEFAULT_AUTHENTICATION_CLASSES': [
    # 'rest_framework.authentication.SessionAuthentication',
    'rest_framework.authentication.BasicAuthentication',
]
Puzzled Puffin

Odpowiedzi podobne do “Django CSRF nie powiodło się”

Pytania podobne do “Django CSRF nie powiodło się”

Więcej pokrewnych odpowiedzi na “Django CSRF nie powiodło się” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu