Skip to content

GET Request example not work in Kotlin #103

@glvoff

Description

@glvoff

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

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions