Opened 6 years ago
Closed 6 years ago
#30113 closed Bug (duplicate)
Ignoring body with application/json payload causes HTTP 400
Reported by: | Yoan Mollard | Owned by: | nobody |
---|---|---|---|
Component: | HTTP handling | Version: | 2.1 |
Severity: | Normal | Keywords: | post, body, json |
Cc: | Triage Stage: | Unreviewed | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description (last modified by )
- Create an example view with Django 2.1.4 that does not consume the request's body:
@csrf_exempt def myview(request): #print(request.body.decode("utf8")) return HttpResponse()
- Now send a a first POST with application/json content type, e.g. with axios:
axios.post("/myview", {"some": "data"})
- Send new identical POST requests, and observe that they cause HTTP 400 errors:
[17/Jan/2019 22:27:47] "POST /myview HTTP/1.1" 200 0 [17/Jan/2019 22:27:48] "{"some":"data"}POST /myview HTTP/1.1" 200 0 [17/Jan/2019 22:29:44] code 400, message Bad request syntax ('{"some":"data"}') [17/Jan/2019 22:29:44] "{"some":"data"}" 400 -
The JSON payload of the first request is still buffered somewhere and mess up later requests.
- Now comment out the print function in the view, and see that consuming the payload has fixed the issue
Change History (2)
comment:1 by , 6 years ago
Description: | modified (diff) |
---|
comment:2 by , 6 years ago
Resolution: | → duplicate |
---|---|
Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
Please test with Django 2.1.15 as this looks like a duplicate of #30015.