我正在尝试使用 http4s 库。我正在尝试使用一些 json 有效负载向 REST Web 服务发出 POST 请求。
当我阅读文档http://http4s.org/docs/0.15/时,我只能看到一个 GET 方法示例。
有谁知道如何发帖?
我正在尝试使用 http4s 库。我正在尝试使用一些 json 有效负载向 REST Web 服务发出 POST 请求。
当我阅读文档http://http4s.org/docs/0.15/时,我只能看到一个 GET 方法示例。
有谁知道如何发帖?
看起来示例中提到的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))
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
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}")
}
希望这可以帮助。