sttp.client3.SimpleHttpClient
See theSimpleHttpClient companion object
A simple, synchronous http client. Usage example:
import sttp.client3.{SimpleHttpClient, UriContext, basicRequest}
val client = SimpleHttpClient()
val request = basicRequest.get(uri"https://httpbin.org/get")
val response = client.send(request)
println(response.body)
Wraps an SttpBackend, which can be substituted or modified using wrapBackend, adding e.g. logging.
Creating a client allocates resources, hence when no longer needed, the client should be closed using close.
Attributes
- Companion
- object
- Graph
-
- Supertypes
-
trait Serializabletrait Producttrait Equalsclass Objecttrait Matchableclass Any
Members list
In this article