yegor256 / cactoos-http

Object-Oriented HTTP Client
MIT License
37 stars 28 forks source link

GET Request example not work in Kotlin #103

Open glvoff opened 3 years ago

glvoff commented 3 years ago

I try use GET request example as presented in readme.md at section Hot to use it

Im creating simple console application in lates Intelij IDEA, adding gradle dependency like this

dependencies {
    implementation("org.cactoos:cactoos-http:0.0.1")
    testImplementation(kotlin("test"))
}

then in main function i wrote this

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.