To suppress csrf verification of class based view, @csrf_exempt decorator in veiws.py doesn’t work in Django 1.4 .
Instead, decorating the as_view function in urls.py works fine!
1 2 3 4 |
from django.views.decorators.csrf import csrf_exempt urlpatterns = patterns('', url(r'^$', csrf_exempt(views.IndexView.as_view()), name='index'), |