async_client: Add the content-type header to our requests.

master
Damir Jelić 2020-04-09 16:28:27 +02:00
parent ee290add45
commit 61f3da3161
1 changed files with 8 additions and 2 deletions

View File

@ -576,11 +576,17 @@ impl AsyncClient {
HttpMethod::GET => self.http_client.get(url),
HttpMethod::POST => {
let body = request.body().clone();
self.http_client.post(url).body(body)
self.http_client
.post(url)
.body(body)
.header(reqwest::header::CONTENT_TYPE, "application/json")
}
HttpMethod::PUT => {
let body = request.body().clone();
self.http_client.put(url).body(body)
self.http_client
.put(url)
.body(body)
.header(reqwest::header::CONTENT_TYPE, "application/json")
}
HttpMethod::DELETE => unimplemented!(),
_ => panic!("Unsuported method"),