Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!

Idiom #174 Make HTTP POST request

Make a HTTP request with method POST to the URL u

use LWP::UserAgent;
# Create a user agent object

my $ua = LWP::UserAgent->new;
 
# Create a request
my $req = HTTP::Request->new(POST => $u);
 
# Pass request to the user agent and get a response back
my $res = $ua->request($req);
 
# Check the outcome of the response
if ($res->is_success) {
    print $res->content;
}
else {
    print $res->status_line, "\n";
}

Using LWP
my $response = `curl -X POST $u`;

Delegating to `curl` if you work on *nix and can't install libraries
perl -Mojo -E 'my $u = "www.example.com"; say p($u)->body;'

Using Mojolicious one liner package, "ojo"
using System.Net.Http;
new HttpClient().PostAsync(u, content);

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