HttpRequest.body
The raw HTTP request body as a byte string. This is useful for processing data in different ways than conventional HTML forms: binary images, XML payload etc. For processing conventional form data, use HttpRequest.POST
.
You can also read from an HttpRequest using a file-like interface. See HttpRequest.read()
.
Please login to continue.