-
Notifications
You must be signed in to change notification settings - Fork 28
Open
Description
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.
Metadata
Metadata
Assignees
Labels
No labels