“Django CSRF falló” Código de respuesta

Django CSRF falló

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 falló

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

Respuestas similares a “Django CSRF falló”

Preguntas similares a “Django CSRF falló”

Más respuestas relacionadas con “Django CSRF falló” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código