gpt4 book ai didi

scala - 使用 Http header 对 spray-client 的响应进行解码

转载 作者:行者123 更新时间:2023-12-01 11:05:55 26 4
gpt4 key购买 nike

我正在使用 spray-client 访问 REST 服务。服务器返回的部分数据在 http 响应头中(其余部分在响应正文中)。

为了能够解码响应,我使用了 Unmarshaller。但是,解码器只能访问响应主体(作为 HttpEntity 的一个实例)并且所有 header 在此阶段似乎都不可访问。

这是当前的管道和解码器代码:

  implicit val IDsUnmarshaller = 
Unmarshaller[List[ID]](MediaTypes.`text/plain`) {
case HttpEntity.NonEmpty(contentType, data) =>
data.asString.split("\n").toList.map( ID(_) )
}

val pipeline: HttpRequest => Future[List[ID]] = (
encode(Gzip)
~> sendReceive
~> decode(Deflate)
~> unmarshal[List[ID]]
)

解码时是否可以访问它们?有什么解决办法吗?

最佳答案

如果您提供 FromResponseUnmarshaller 而不是普通的 Unmarshaller,您还可以访问 header 。

有关创建 FromResponseUnmarshallers 的方法,请参阅此文件:https://github.com/spray/spray/blob/master/spray-httpx/src/main/scala/spray/httpx/unmarshalling/Deserializer.scala

例如您可以提供一个隐式函数 HttpResponse => List[ID] 并且应该选择它。

关于scala - 使用 Http header 对 spray-client 的响应进行解码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22015692/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com