http requests with Kotlin multiplatform for desktop

Viewed 315

I'm new to kotlin multiplatform and I'm using compose for desktop, how can I make HTTP requests? is there any resources to learn from?

1 Answers

Ktor is the best supported multiplatform HTTP client currently, as it is maintained by Jetbrains There are also projects that put together many open source tools for kotlin multiplatform such as: AAkira

There is not a specific place currently that goes over HTTP communication, as it would be specific per tool you choose.

Related