Get the complete request body. Returns: bytes: The request body data
(self)
| 291 | ) |
| 292 | |
| 293 | def get_request_body(self): |
| 294 | """Get the complete request body. |
| 295 | |
| 296 | Returns: |
| 297 | bytes: The request body data |
| 298 | """ |
| 299 | return self.request_body.getvalue() |
| 300 | |
| 301 | async def read_body_chunk(self): |
| 302 | """Read next body chunk asynchronously for streaming. |
no outgoing calls