“Django CSRF falhou” Respostas de código

Django CSRF falhou

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 falhou

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

Respostas semelhantes a “Django CSRF falhou”

Perguntas semelhantes a “Django CSRF falhou”

Mais respostas relacionadas para “Django CSRF falhou” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código