Where can I find more information about that?
# ktor
a
Where can I find more information about that?
e
i’ll provide you an example later
Copy code
HttpClient(Apache) {
        install(JsonFeature) {
            serializer = JacksonSerializer()
        }
        
        install("headers") {
            requestPipeline.intercept(HttpRequestPipeline.Before) {
                context.header("my-header", "trololo")
            }
        }
    }
a
👍 Thank you. I know I've seen something like this before, but it's not easy to find in the documentation