Browse Source

reqwest client using a form

main
crunk 11 months ago
parent
commit
c0cf65859b
  1. 4
      src/main.rs

4
src/main.rs

@ -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…
Cancel
Save