Hi, I configured a `CIO` client, and able to use i...
# ktor
o
Hi, I configured a
CIO
client, and able to use it against the server. issue is I can’t see any logs of those req in Charles/Network inspector, I guess it’s bcs I didn’t configure TLS for the engine. I followed this, but not sure how to provide the
keystore
file. is that the issue? any idea how to solve it? EDIT: I actually think it’s bcs I didn’t config proxy, but having issues there: I added this:
Copy code
engine {
...
    proxy = ProxyBuilder.http(URLBuilder(host = hostName, protocol = URLProtocol.HTTPS, port = 8080 ).build())
...
}
the req is triggered, but getting t/o, what am I doing wrong?