Will `client.call(link) { method = HttpMethod.Get ...
# ktor
d
Will
client.call(link) { method = HttpMethod.Get }.response.content.toByteArray()
return all bytes from a url even if Content-Length isn't given? I basically want to download a file, of which the size may not be known in advance.
👌 2