我正在嘗試使用http4s庫。我正在嘗試使用一些json負載向REST Web服務發出POST請求。https4s如何進行POST調用REST Web服務
當我閱讀文檔http://http4s.org/docs/0.15/我只能看到一個GET方法的例子。
沒有人知道如何做一個POST?
我正在嘗試使用http4s庫。我正在嘗試使用一些json負載向REST Web服務發出POST請求。https4s如何進行POST調用REST Web服務
當我閱讀文檔http://http4s.org/docs/0.15/我只能看到一個GET方法的例子。
沒有人知道如何做一個POST?
看起來像這個例子中提到的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))
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}")
}
希望這有助於。
這不是服務器端代碼嗎?在上面的代碼中,您正在接受POST請求並從請求中讀取一個Name對象,然後用Hello名稱產生一個響應。但我的問題是在客戶端。 –
https4s版本:0.14.11
難的部分是如何設置帖子正文。當您深入代碼時,您可能會發現type EntityBody = Process[Task, ByteVector]
。但是跆拳道呢?但是,如果您尚未準備好進入scalaz,只需使用即可。
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()
}
P.S.我對http4s客戶端有幫助的帖子(只是跳過中文並閱讀scala代碼):http://sadhen.com/blog/2016/11/27/http4s-client-intro.html
我發現了同樣的東西。您可能需要找出使用了Request的哪個實現,以及如何修改主體以追加數據。 – sascha10000