Closed thomasw closed 10 years ago
Django's self.request.body is the incoming request body as a byte stream, which works just fine for passing file uploads off downstream via the request library's data parameter.
self.request.body
data
This change fixes file uploads.
Django's
self.request.body
is the incoming request body as a byte stream, which works just fine for passing file uploads off downstream via the request library'sdata
parameter.This change fixes file uploads.