Logo

Programming-Idioms

  • Rust
  • Go

Idiom #174 Make HTTP POST request

Make a HTTP request with method POST to the URL u

import "net/http"
import "net/url"
response, err := http.PostForm(u, formValues)

formValues has type net/url.Values
import "net/http"
response, err := http.Post(u, contentType, body)

contentType is a string.
body is a io.Reader which can be nil.
[dependencies]
error-chain = "0.12.4"
reqwest = { version = "0.11.2", features = ["blocking"] }

use error_chain::error_chain;
use std::io::Read;
let client = reqwest::blocking::Client::new();
let mut response = client.post(u).body("abc").send()?;

This is a synchronous (blocking) reqwest call.

The [dependencies] section goes to cargo.toml. The optional feature blocking must be explicit.

response has type Result<Response>.
using System.Net.Http;
new HttpClient().PostAsync(u, content);

New implementation...
< >
programming-idioms.org