Liberator.Conn.read_body
You're seeing just the function
read_body
, go back to Liberator.Conn module for more information.
Reads the body from the conn, and puts it in the assigns under the key :raw_body
.
Accepts the same headers as Plug.Conn.read_body/2
:
:length
- sets the maximum number of bytes to read from the body for each chunk, defaults to64_000
bytes:read_length
- sets the amount of bytes to read at one time from the underlying socket to fill the chunk, defaults to64_000
bytes:read_timeout
- sets the timeout for each socket read, defaults to5_000
milliseconds