let proxy = reqwest::Proxy::http("http://log:pass@ip:port").unwrap();
let client1: Client= Client::builder()
.default_headers(headers.clone())
.cookie_store(true)
.proxy(proxy)
.build()
.unwrap();
let resp = client1
.get("https://api.ipify.org?format=json")
.send()
.unwrap();
let resp_text = resp.text().unwrap();
println!("RESP TEXT: {resp_text}"); // Получаю свой ip, а не ip прокси
Proxy all HTTP traffic to the passed URL.Проксирует весь HTTP трафик
Proxy all HTTPS traffic to the passed URL.Проксирует весь HTTPS трафик
Proxy all traffic to the passed URL.Пооксирует вообще весь трафик