0

我正在尝试使用 http4s 库。我正在尝试使用一些 json 有效负载向 REST Web 服务发出 POST 请求。

当我阅读文档http://http4s.org/docs/0.15/时,我只能看到一个 GET 方法示例。

有谁知道如何发帖?

4

3 回答 3

1

看起来示例中提到的get/getAs方法只是该fetch方法的便捷包装器。见https://github.com/http4s/http4s/blob/a4b52b042338ab35d89d260e0bcb39ccec1f1947/client/src/main/scala/org/http4s/client/Client.scala#L116

使用Request构造函数并Method.POST作为method.

fetch(Request(Method.POST, uri))
于 2016-07-28T18:57:43.423 回答
1

https4s版本:0.14.11

困难的部分是如何设置帖子正文。当您深入研究代码时,您可能会发现type EntityBody = Process[Task, ByteVector]. 但是,是吗?但是,如果您还没有准备好深入研究 scalaz,只需使用withBody.

object Client extends App {
  val client = PooledHttp1Client()
  val httpize = Uri.uri("http://httpize.herokuapp.com")

  def post() = {
    val req = Request(method = Method.POST, uri = httpize / "post").withBody("hello")
    val task = client.expect[String](req)
    val x = task.unsafePerformSync
    println(x)
  }

  post()
  client.shutdownNow()
}

PS我关于http4s客户端的有用帖子(跳过中文并阅读scala代码):http ://sadhen.com/blog/2016/11/27/http4s-client-intro.html

于 2016-11-25T18:47:32.753 回答
-3
import org.http4s.circe._
import org.http4s.dsl._
import io.circe.generic.auto._      

case class Name(name: String)

  implicit val nameDecoder: EntityDecoder[Name] = jsonOf[Name]

  def routes: PartialFunction[Request, Task[Response]] = {
     case req @ POST -> Root / "hello" =>
     req.decode[Name] { name =>
     Ok(s"Hello, ${name.name}")
  }

希望这可以帮助。

于 2016-09-22T13:59:32.063 回答