uli
04/18/2018, 7:49 AMBasicAuth
as client feature.
I do:
val apacheEnbgineFactory = Apache.config {
followRedirects = true
}
val ktorClient = HttpClient(apacheEnbgineFactory) {
install(BasicAuth) {
username = "test"
password = "test"
}
}
Trying to break inside the block passed to intercept
inside BasicAuth does never breake5l
04/18/2018, 8:22 AMuli
04/18/2018, 9:53 AM