Logo

Programming-Idioms

  • Lua
  • Lisp

Idiom #174 Make HTTP POST request

Make a HTTP request with method POST to the URL u

(ql:quickload 'dexador)
(dex:post u)

2x faster than drakma w/ connection-pooling
(ql:quickload :drakma)
(drakma:http-request u :method :post)
using System.Net.Http;
new HttpClient().PostAsync(u, content);

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