Is there someone that successfully implemented gzi...
# ktor
s
Is there someone that successfully implemented gzip on requests using ktor? For some reason it works fine on android but on iOS I see that headers are added but the body is still raw 🤔 And I’m doing:
Copy code
install(ContentEncoding) {
  mode = ContentEncodingConfig.Mode.CompressRequest
  gzip()
}
And then
Copy code
httpClient.post {
  url(url)
  setBody(body)
  compress("gzip")
}
a
This seems to be a bug, so I've filed an issue.
❤️ 1
s
Thank you so much! blob ty sign