HTTP Test server that accepts GET/Post calls
I need a live test server that accepts my requests for basic information via HTTP GET and also allows me to POST (even if its really not doing anything). This is entirely for test purposes.
A good example is here
it easily accepts GET requests, but I need one that accepts POST requests.
Does anyone know of a server that I can send stupid test messages too?
http://httpbin.org/
It echoes the data used in your request for any of these types:
There is http://ptsv2.com/
"Here you will find a server which receives any POST you wish to give it and stores the contents for you to review."
http://requestb.in was similar to the already mentioned tools and also had a very nice UI.
RequestBin gives you a URL that will collect requests made to it and let you inspect them in a human-friendly way. Use RequestBin to see what your HTTP client is sending or to inspect and debug webhook requests.
Though it has been discontinued as of Mar 21, 2018.
We have discontinued the publicly hosted version of RequestBin due to ongoing abuse that made it very difficult to keep the site up reliably. Please see instructions for setting up your own self-hosted instance.
链接地址: http://www.djcxy.com/p/17586.html上一篇: HTTP查询和URI编码的疑惑