Convenient factory method that uses a play.api.libs.ws.WSClientConfig value for configuration instead of an org.asynchttpclient.AsyncHttpClientConfig.
Convenient factory method that uses a play.api.libs.ws.WSClientConfig value for configuration instead of an org.asynchttpclient.AsyncHttpClientConfig.
Typical usage:
implicit val materializer = ... val client = AhcWSClient() val request = client.url(someUrl).get() request.foreach { response => doSomething(response) client.close() }
configuration settings, AhcWSClientConfig() by default
enables HTTP cache-control, None by default