Changes between Initial Version and Version 11 of Ticket #29800


Ignore:
Timestamp:
Nov 25, 2018, 4:45:49 AM (6 years ago)
Author:
Manan
Comment:

Added a csrf_exempt to bypass the default 403 CSRF error page

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #29800

    • Property Summary Django hangs when Content-Length hangsDjango hangs when Content-Length has incorrect value
    • Property Component UncategorizedHTTP handling
    • Property Triage Stage UnreviewedAccepted
    • Property Cc Herbert Fortes added
    • Property Owner nobody removed
  • Ticket #29800 – Description

    initial v11  
    77with following handler:
    88{{{#!python
     9from django.http import HttpResponse
     10from django.views.decorators.csrf import csrf_exempt
     11
     12@csrf_exempt
    913def index(request):
    1014    return HttpResponse(content=request.body)
Back to Top