hey all, is there a preferred or "standard" way to...
# getting-started
t
hey all, is there a preferred or "standard" way to do http calls in kotlin? like an external library or some built in http library
l
I’d think #ktor would be the closest to a ‘standard’ for Kotlin as a whole since it’s first-party.
t
https://ktor.io/docs/create-client.html#use-client looks like it is exactly what I'm looking for thanks!
m
You can also use http4k client or some other libs, as you prefer: https://kotlin.libhunt.com/categories/5616-http-clients Unfortunately there’s no HTTP client in the standard library.