Handy way to send POST request
Sometimes we need to make POST request to verify some functionallity or for anything else. As for me, the most handy way is to use wget with –post-data command-line parameter.
Wget is one of usefullest applications I have ever used. Windows version is also available.
Thursday 12 Oct 2006 | Life, Software

not sure if it’s version specific, but i just had to use ‘–post-data’ with my wget request `wget http://someurl.dom –post-data=’this=that&foo=bar&etc=…’`, but it worked like a charm. saved me having to code out a silly html form. much thanks.