I'm in the need of a tool to help debugging a webapp - anyone know of some simple client tools that allow you to easily send and construct customizable POST/GET/PUT/DELETE HTTP requests ?
feedback
|
|
| |||||||||||||
feedback
|
|
Some GET
PUT
DELETE
POST
| |||||||||
feedback
|
|
hurl.it for those who don't want to download anything | |||||||||
|
feedback
|
|
RESTClient is a Firefox extension. Also worth looking at is Poster - another extension. | ||||
|
feedback
|
|
Fidller (free web debugger) allows you to write HTTP requests to webapps. | |||
feedback
|
|
I absolutely love http://apikitchen.com it is one versatile tool that I have seen for HTTP debugging. They are offering a Mac client for testing within internal networks else you can use their hosted solution with permalinks to share the API output with other developers. | |||
feedback
|
|
The grandaddy of them all is telnet. Just open a connection on Port 80 and type in the raw commands. Most of the basic Internet protocols such as HTTP and mail are text-based and this is part of the reason why. Of course, if you prefer something more abstract, there are also command-line utilities like wget and curl. | ||||
|
feedback
|
|
Firefox add-on Tamper Data. | ||||
|
feedback
|
|
Best tool to do that is httest :) You can get it for Windows or Debian/Ubuntu, just do apt-get install httest. httest is also available in source and do run on any Unix System. To generate a Client write the following script
If something different than 200 OK is returned the Script failed. __POST can be any method like __DELETE or __GET or __FOO
Run your script with
Hope this helps. If you download the newest httest, there also macros to simplify Browser like Requests. Have fun... Best regards | |||||
feedback
|
|
wget is very versatile. TIP: use wget -d to get full debug info about the request and response | |||
|
feedback
|
|
For non-automated testing, the Live HTTP Headers add-on for Firefox can be used to alter and replay requests. (It can also change the request method; though the request method dropdown only shows GET and POST, one can actually type whatever one likes, even invalid methods. One could also type the whole request payload, but I assume the other answers offer better solutions for that.) The online Web-Sniffer might be useful to see a response without rendering it. (The Web Developer Toolbar can easily change the | |||
|
feedback
|
|
The burp proxy tool is easy to use from portswigger.net. It is external to the browser which is nice. Some of the other tools that integrate into the browser as a plug-in have advantages too. You can see all http/https requests and responses and edit them if desired. | |||
|
feedback
|
|
@adib - You mentioned a utility for the Mac. I've been using Http Client (http://ditchnet.org/httpclient/) and have had no problems with it at all. Supports GET, POST, PUT, DELETE, TRACE, OPTIONS, HEAD, CONNECT. Hope that helps :) | |||
|
feedback
|
|
Here is my tool - have fun | |||
|
feedback
|
|
Some Restful JSON Examples that work on my Mac GET (Browse)
PUT (Update)
POST (Create)
DELETE (Remove)
| |||
|
feedback
|
protected by Community♦ Aug 3 '11 at 19:42
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.