reqwest client using a form
This commit is contained in:
parent
f098cffa37
commit
c0cf65859b
@ -14,16 +14,16 @@ struct Cli {
|
||||
#[tokio::main]
|
||||
|
||||
async fn main() -> Result<(), reqwest::Error> {
|
||||
// Some simple CLI args requirements...
|
||||
let args = Cli::parse();
|
||||
let url = args.url;
|
||||
let text = args.text;
|
||||
|
||||
let client = reqwest::Client::new();
|
||||
let res = client.post(url).body(text).send().await?;
|
||||
let res = client.post(url).form(&[("text", text)]).send().await?;
|
||||
|
||||
eprintln!("Response: {:?} {}", res.version(), res.status());
|
||||
eprintln!("Headers: {:#?}\n", res.headers());
|
||||
|
||||
let body = res.text().await?;
|
||||
println!("{}", body);
|
||||
Ok(())
|
||||
|
Loading…
Reference in New Issue
Block a user