Hi, does anybody know if it’s possible to send a r...
# ktor
g
Hi, does anybody know if it’s possible to send a request without including the
Content-Type
header? I’m trying to upload a file to Google Cloud Platform and adding the header causes a checksum error. If I set it to null like the sample below, then it still includes `Content-Type: null`:
Copy code
client.put<String> {
    url(urlString)
    body = ByteArrayContent(fileByteArray, contentType = null)
}