П
Size: a a a
П
TK
V
П
MB
Bp

V
SK
A
MB
A
MB
A
A
Result::unwrap() on an Err value: reqwest::Error { kind: Request, url: Url { scheme: "https", cannot_be_a_base: false, username: "", password: None, host: Some(Ipv4(127.0.0.1)), port: Some(9900), path: "/", query: None, fragment: None }, source: hyper::Error(Connect, Ssl(Error { code: ErrorCode(1), cause: Some(Ssl(ErrorStack([Error { code: 336130315, library: "SSL routines", function: "ssl3_get_record", reason: "wrong version number", file: "ssl/record/ssl3_record.c", line: 331 }]))) }, X509VerifyResult { code: 0, error: "ok" })) }A
#[tokio::test]
async fn get_account_info_plain_reqewst() {
let mut map = HashMap::new();
map.insert("lang", "rust");
map.insert("body", "json");
let client = reqwest::Client::new();
let res = client.post("https://127.0.0.1:9900")
.json(&map)
.send()
.await.unwrap();
}
MB
MB
A
Result::unwrap() on an Err value: reqwest::Error { kind: Request, url: Url { scheme: "http", cannot_be_a_base: false, username: "", password: None, host: Some(Ipv4(127.0.0.1)), port: Some(9900), path: "/", query: None, fragment: None }, source: hyper::Error(Parse(Version)) }MB