Does Kotlin have any built-in libraries for HTTP R...
# getting-started
s
Does Kotlin have any built-in libraries for HTTP Requests similar to Java 11's built-in HTTPClient?
d
No, its not built-in, but take a look at Ktor: https://ktor.io/clients/index.html
s
Thanks.
m
Also take a look at http4k and these others: https://kotlin.libhunt.com/categories/5616-http-clients
m
And of course if you're on JDK11, you should be able to use the HTTPClient from Kotlin...
☝️ 6
s
Thanks all!