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 ?

link|improve this question

2  
what OS are you using? – roryf Jul 6 '09 at 14:11
I think it is better to make a community wiki and summary the answers. – xiao 啸 Apr 25 '11 at 5:27
feedback

15 Answers

up vote 38 down vote accepted

For windows, WFetch is your quick and dirty answer. Some information on its use here.

link|improve this answer
Just what I needed, thanks. – nos Jul 6 '09 at 14:30
Is there anything similar for the Mac? – adib May 19 '10 at 19:18
3  
curl works perfectly on the mac – David Sykes Feb 7 '11 at 11:13
There's a good tool available on the Mac App Store called "RESTTester". Does basic testing for RESTful interfaces. – ing0 Oct 18 '11 at 16:50
@Christopher_G_Lewis it can use but the response are garbled text when the contents are japanese characters. any settings or other tool that can support japanese characters? – eros Nov 10 '11 at 5:42
show 1 more comment
feedback

Some curl examples:

GET

curl -HAccept:text/plain http://example.com/base

PUT

curl -XPUT -HContent-type:text/plain --data "stuff:morestuff" http://example.com/base?param=val

DELETE

curl -XDELETE http://example.com/base/user/123

POST

curl -d "param1=value1&param2=value2" http://example.com/base/
link|improve this answer
Another curl tip: To send a POST request whose data is not in application/x-www-urlencoded format, use the --data-binary option instead of --data. – Kevin Reid Aug 6 '10 at 4:08
4  
This is exactly what I needed – kisplit Jan 11 '11 at 18:37
Looks interesting... must take a look at it – danicotra Dec 5 '11 at 21:05
feedback

hurl.it for those who don't want to download anything

link|improve this answer
this thing is awesome, thanks man – Garbit Aug 23 '11 at 16:56
It's an epic thing. – Pateman Feb 26 at 19:55
this is perfect for simple testing... – PravinCG Apr 6 at 4:50
Exactly what I was looking for. Even better if you login. – redent84 May 10 at 15:55
feedback

RESTClient is a Firefox extension. Also worth looking at is Poster - another extension.

link|improve this answer
feedback

Fidller (free web debugger) allows you to write HTTP requests to webapps.

link|improve this answer
from the fiddler website:System Requirements: Windows 2K / XP / 2K3 / Vista / 2K8 / Win7 Microsoft .NET Framework v2.0 or later 8 megabytes disk space / 800mhz processor (Screams at 2.4ghz) 256 megabytes RAM (1GB+ highly recommended) – mosta Feb 14 '11 at 9:29
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.

link|improve this answer
Discovered apikitchen.com and love it! Sleek design with multiple tabs support. – Dayson Feb 5 at 19:30
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.

link|improve this answer
telnet + dos (or bash) makes for a fun way to surf the internet – Matthew Whited Jul 6 '09 at 14:55
feedback

Firefox add-on Tamper Data.

link|improve this answer
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

CLIENT
_REQ localhost 80
__POST /foo/bar HTTP/1.1
__Host: localhost
__Content-Length: AUTO
__
__my=param&next=foo
_EXPECT . "200 OK"
_WAIT
END

If something different than 200 OK is returned the Script failed. __POST can be any method like __DELETE or __GET or __FOO

__ is the send command ;)

Run your script with

httest your_script.htt

Hope this helps. If you download the newest httest, there also macros to simplify Browser like Requests. Have fun...

Best regards

link|improve this answer
1  
You can get it from sourceforge.net/projects/htt – ia97lies Feb 16 '11 at 19:29
feedback

wget is very versatile. TIP: use wget -d to get full debug info about the request and response

link|improve this answer
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 method attribute in a <form> itself, which after submitting once might make it easy to change request parameters, in some limited cases. One can achieve the same with any tool like Firebug or Web Inspector.)

link|improve this answer
+1 for the thought put in – Cirrostratus Nov 11 '11 at 16:25
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.

link|improve this answer
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 :)

link|improve this answer
feedback

Here is my tool - have fun

http://www.owasp.org/index.php/OWASP_HTTP_Post_Tool

link|improve this answer
feedback

Some Restful JSON Examples that work on my Mac

GET (Browse)

curl "http://localhost/myservice/?page=1&size=50"

PUT (Update)

curl -i -X PUT -H Accept:application/json -H Content-Type:application/json  -d '{id:47,user:{firstname:"Joe",lastname:"Smith","phone":"555-555-1212"}}' 'http://localhost/myservice/'

POST (Create)

curl -i -X POST -H Accept:application/json -H Content-Type:application/json  -d '{user:{firstname:"Jane",lastname:"Smith","phone":"555-555-1212","relatedTo":[47]}}' 'http://localhost/myservice/'

DELETE (Remove)

curl -i -X DELETE -H Accept:application/json -H Content-Type:application/json  'http://localhost/myservice/47'
link|improve this answer
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.

Not the answer you're looking for? Browse other questions tagged or ask your own question.