istio-ecosystem / authservice

Move OIDC token acquisition out of your app code and into the Istio mesh
Apache License 2.0
217 stars 63 forks source link

refactoring HTTP client #180

Closed Shikugawa closed 6 months ago

Shikugawa commented 3 years ago

Previous HTTP client code has some problems.

  1. It doesn't have transport socket options. So we can't switch raw or tls socket to use in requesting.
  2. Many lines of code are included in the same function. We should separate them.

And also, It has some points to cleanup by @incfly