request
inline suspend fun HttpClient.request(builder: HttpRequestBuilder = HttpRequestBuilder()): HttpResponse
Executes an HttpClient's request with the parameters specified using builder.
Learn more from Making requests.
Executes an HttpClient's request with the parameters specified in block.
Learn more from Making requests.
inline suspend fun HttpClient.request(urlString: String, block: HttpRequestBuilder.() -> Unit = {}): HttpResponse
Executes an HttpClient's request with the urlString and the parameters configured in block.
Learn more from Making requests.
inline suspend fun HttpClient.request(url: Url, block: HttpRequestBuilder.() -> Unit = {}): HttpResponse
Executes an HttpClient's request with the url and the parameters configured in block.
Learn more from Making requests.
Creates an HttpRequestBuilder and configures it using block.