“Django CSRF a échoué” Réponses codées

Django CSRF a échoué

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 a échoué

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

Réponses similaires à “Django CSRF a échoué”

Questions similaires à “Django CSRF a échoué”

Plus de réponses similaires à “Django CSRF a échoué” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code