anyway to enable support for brotli in a client? o...
# ktor
j
anyway to enable support for brotli in a client? only have access to gzip and deflate
Copy code
install(plugin = ContentEncoding) {
    gzip()
    deflate()
}
a
Unfortunately, the Brotli compression format isn't supported. You can use a third-party library to implement the
ContentEncoder
interface for integrating it into the
ContentEncoding
plugin.