Function reqwest::blocking::get [−][src]
Expand description
Shortcut method to quickly make a blocking GET
request.
NOTE: This function creates a new internal Client
on each call,
and so should not be used if making many requests. Create a
Client
instead.
Examples
let body = reqwest::blocking::get("https://www.rust-lang.org")?
.text()?;
Errors
This function fails if:
- native TLS backend cannot be initialized
- supplied
Url
cannot be parsed - there was an error while sending request
- redirect loop was detected
- redirect limit was exhausted