Scala - 使用scalaj.http.Http发送多个标头

时间:2015-02-24 06:26:21

标签: java scala http post web

我正在使用下面列出的库发布请求。好像我的最后一个标题被切断了。我尝试了以下两种方式,但似乎都没有起作用。

import scalaj.http._
import scalaj.http.Http


var result = Http("https://example.com" + Key + "/rowset")
  .postData(jsonOutput)
  .headers(Seq("Authorization" -> ("Bearer " + accessToken)))
  .headers(Seq("content-Type" -> "application/json"))


var result = Http("https://example.com" + Key + "/rowset")
  .postData(jsonOutput)
  .headers(Seq("Authorization" -> ("Bearer " + accessToken), "content-Type" -> "application/json"))

1 个答案:

答案 0 :(得分:0)

只是为了检查;你正在用结果变量做什么?它仍然只是一个请求,并且将一直保持这种状态,直到你调用result.asString来执行请求并返回响应(如果是asString则返回HttpResponse [String]。)