import org.cactoos.http.HtBody
import org.cactoos.http.HtResponse
import org.cactoos.text.TextOf
import java.io.File
fun main(args: Array<String>) {
val body = TextOf(
HtBody(
HtResponse("http://www.google.com") // <-- at this point HtResponse want a second parameter before URL, some Wire.
)
).asString()
}
If this code not suppose to work, tell me please how i should make simple GET request.
I try use GET request example as presented in
readme.md
at sectionHot to use it
Im creating simple console application in lates Intelij IDEA, adding gradle dependency like this
then in main function i wrote this
If this code not suppose to work, tell me please how i should make simple GET request.