Hi how to use kotlin khttp lybrarie to make a req...
# android
l
Hi how to use kotlin khttp lybrarie to make a request in Android App
s
@Lumeidagnacadja For every HTTP method, you have to do package-level function in the khttp package, such as get, post and so on.
Copy code
khttp.get("<http://httpbin.org/get>")
l
Ok