使用scalaj.http 2.4 我无法If-None-Match
为这个简单的调用获得正确的 etag 代码:
import scalaj.http.Http
object EtagTest extends App {
val firstResponse = Http("https://api.github.com/users/octocat/orgs")
// get correct etag ...
val response = Http("https://api.github.com/users/octocat/orgs").header("If-None-Match", "\"98f0c1b396a4e5d54f4d5fe561d54b44\"").asString
println(response.code)
}
我期待一个304 Not Modified
,但我得到一个200
。