我很困惑为什么无法从使用reqwest
的以下函数中获取任何内容:
fn try_get() {
let wc = reqwest::Client::new();
wc.get("https://httpbin.org/json").send().map(|res| {
println!("{:?}", res);
println!("length {:?}", res.content_length());
});
}
我希望这个函数显示响应对象,然后再给我内容长度。它执行第一个,但不执行第二个:
Response { url: "https://httpbin.org/json", status: 200, headers: {"access-control-allow-credentials": "true", "access-control-allow-origin": "*", "connection": "keep-alive", "content-type": "application/json", "date": "Tue, 26 Feb 2019 00:52:47 GMT", "server": "nginx"} }
length None
这令人困惑,因为如果我使用cURL击中了相同的端点,它会给我一个如预期的效果:
$ curl -i https://httpbin.org/json
HTTP/1.1 200 OK
Access-Control-Allow-Credentials: true
Access-Control-Allow-Origin: *
Content-Type: application/json
Date: Tue, 26 Feb 2019 00:54:57 GMT
Server: nginx
Content-Length: 429
Connection: keep-alive
{
"slideshow": {
"author": "Yours Truly",
"date": "date of publication",
"slides": [
{
"title": "Wake up to WonderWidgets!",
"type": "all"
},
{
"items": [
"Why <em>WonderWidgets</em> are great",
"Who <em>buys</em> WonderWidgets"
],
"title": "Overview",
"type": "all"
}
],
"title": "Sample Slide Show"
}
}
我的函数没有提供内容长度的问题是什么?
答案 0 :(得分:3)
reqwest
documentation for content_length()
始终是一个很好的起点。声明
获取响应的内容长度(如果已知)。
可能不知道的原因:
- 服务器未发送内容长度的标头。
- 将响应压缩并自动解码(从而更改实际解码长度)。
以您的示例curl
的输出为例,它包含Content-Length: 429
,因此第一种情况已经涵盖。因此,现在让我们尝试禁用gzip:
let client = reqwest::Client::builder()
.gzip(false)
.build()
.unwrap();
client.get("https://httpbin.org/json").send().map(|res| {
println!("{:?}", res);
println!("length {:?}", res.content_length());
});
记录
length Some(429)
所以第二种情况就是问题。默认情况下,reqwest
似乎会自动处理压缩的内容,而curl
则不会。
Content-Length
HTTP标头是完全可选的,因此通常依靠它的存在是一个错误。您应该使用其他reqwest
API从请求中读取数据,然后计算数据本身的长度。例如,您可以使用.text()
let wc = reqwest::Client::new();
let mut response = wc.get("https://httpbin.org/json").send().unwrap();
let text = response.text().unwrap();
println!("text: {} => {}", text.len(), text);
类似地,对于二进制数据,您可以使用.copy_to()
:
let wc = reqwest::Client::new();
let mut response = wc.get("https://httpbin.org/json").send().unwrap();
let mut data = vec![];
response.copy_to(&mut data).unwrap();
println!("data: {}", data.len());