I'm using Ktor client to make calls to an API and I didn't find any examples of how to construct a URL with query parameters.
I wanted something like this:
protocol = HTTPS,
host = api.server.com,
path = get/items,
queryParams = List(
Pair("since", "2020-07-17"),
)
I can't find any examples of how to use URL builder for this.
If you want to specify each of this element (protocol, host, path and params) separately you can use a
HttpClient.request
method to construct yoururl
. Inside this method you have access to HttpRequestBuilder and then you can configureurl
with usage of UrlBuilderResponse
type is your response, you can specify there whatever you need