GithubHelp home page GithubHelp logo

Comments (9)

rybalkinsd avatar rybalkinsd commented on May 27, 2024 1

@gokulchandra looks good for me.
how about asXXX? it's more common naming pattern in my mind

inline fun Response.asString(): String(?) = body()?.string()

inline fun Response.asJson() ...

The only thing we didn't discuss yet - asStream, as you mentioned before

from kohttp.

gokulchandra avatar gokulchandra commented on May 27, 2024 1

I should have Draft PR for this issue over the next 2 days. 👍
We can improve on that.

from kohttp.

rybalkinsd avatar rybalkinsd commented on May 27, 2024 1

Please also have a look at my latest commits, there is a bit more developed upload dsl idea together with multipart

from kohttp.

gokulchandra avatar gokulchandra commented on May 27, 2024 1

Using #82 to work on this.

from kohttp.

gokulchandra avatar gokulchandra commented on May 27, 2024

@rybalkinsd I guess the challenge is in how the API should look when we have to deal with different data types in the response. From a high level I guess we could categorise types under :

  • byte arrays
  • strings
  • json
  • streams (have to figure out how to handle streams)
httpXXX { } .use {
		val textContent = text() // returns response textual content
        val content = json() // returns response body as json if exists and valid json
}

Thoughts?

from kohttp.

rybalkinsd avatar rybalkinsd commented on May 27, 2024

m/b it's better to allow interaction without use (handle on our side)

There are two big cases.

  1. User want to get content eagerly, format does not matter
  2. User does not want to have all the content in memory usually a byte stream

from kohttp.

rybalkinsd avatar rybalkinsd commented on May 27, 2024

for example Fuel has .responseString { request, response, result -> ... } API

from kohttp.

rybalkinsd avatar rybalkinsd commented on May 27, 2024

Here is a reference how http4k acts. Our goal is to analyze their experience and provide the most fluent and easiest DSL as possible

from kohttp.

gokulchandra avatar gokulchandra commented on May 27, 2024

@rybalkinsd I took a look at what Fuel provides. Correct me if I don't understand this. Here's a rough idea.

// Defining this could allow access to the String Content in response

internal fun Response.string() = body()?.string()

val stringResponse = "https://www.yandex.ru/search/?text=iphone".httpGet().string()

I understand this isn't a very DSL based approach, but its allows easier access since the user does not need to be concerned with anything(Request, Response, Result) unlike even what Fuel provides with .responseString { request, response, result -> ... }.

from kohttp.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.