pub async fn fetch_page(url: &str, timeout_secs: u64) -> Result<FetchedPage>Expand description
Fetch a URL, following redirects manually so the SSRF guard re-validates and
re-pins each hop (closing the DNS-rebinding window for redirected hosts too),
retrying transient failures with exponential backoff. Caps the redirect
chain at [MAX_REDIRECTS] and the body at [MAX_BODY_BYTES].