gpt4 book ai didi

scala - [喷客户端] : Facebook graph API returning wrong contentype

转载 作者:行者123 更新时间:2023-12-01 11:21:49 24 4
gpt4 key购买 nike

盯着 Spray我尝试向 Facebook Graph API 发出请求的库:

val responseF: Future[HttpResponse] = pipeline(Get("http://graph.facebook.com/v2.1/facebook/picture?redirect=false"))


def receive = {
case _ =>
val originalSender = sender()
responseF onComplete{
case Success(response) =>
log.info(response.toString)
originalSender ! response.toString
log.info( """|Response for GET request
|status : {}
|headers: {}
|body : {}""".stripMargin,
response.status.value, response.headers.mkString("\n ", "\n ", ""), response.entity.asString)
case Failure(error) =>
log.error(error, "Could not get Facebook stuff")
originalSender ! "not working"
}

}

主要问题是响应的内容类型是内容类型:文本/javascript;字符集=UTF-8而不是预期的 application/json

我的请求到底有什么问题?

因为 Spray 在很大程度上依赖于内容类型来进行解析等。

最佳答案

简单的解决方案是只添加一个接受 header ,但我不知道该怎么做:

pipeline( 
Get("http://graph.facebook.com/v2.1/facebook/picture?redirect=false").withHeaders(Accept(MediaTypes.`application/json`))
)

感谢关于 goolge group 的快速回答我现在终于得到了正确的内容类型。

关于scala - [喷客户端] : Facebook graph API returning wrong contentype,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25329148/

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