1👍
try with @csrf_exempt
from django.views.decorators.csrf import csrf_exempt
@csrf_exempt
def your_view(request):
print "fff"
print "do your things..."
Source:stackexchange.com
1👍
try with @csrf_exempt
from django.views.decorators.csrf import csrf_exempt
@csrf_exempt
def your_view(request):
print "fff"
print "do your things..."