How to make HTTP / https POST requests manually?

I want to test some url on a small custom server I'm working on. I used Wfetch on windows and its awesome

My requirements for these tests: - must be able to run on linux (ubuntu) - must be able to set all parameters manually - must support digest acceleration

can someone suggest some gui or extension for such work.

I already tried RESTclient and Poster, but they do not support digest acceleration.

Possible duplicate How do I manually start POST HTTP requests using Firefox or Chrome?

+7
source share
2 answers

You can use wget . From manual it supports digest authentication and can send POST requests.

There seems to be a wget :: gui GUI, but I don't know how reliable or complete it is.

+4
source

wget can help you.

we get:

 wget http://example.com 

after

 wget --post-data "username=Yarkee" http://example.com 
+10
source

All Articles