zumzum
zumzum

Reputation: 20168

HTTP rest test service?

I want to know what are the best options out there to test for example a POST request?

So am developing a client app and I want to send POST requests to see if the HTTP layer is working fine but I don't have a server I can hit with those POST requests.

What options are available out there?

Thank you

Upvotes: 0

Views: 1168

Answers (2)

Madhur
Madhur

Reputation: 2219

Few awesome tools I must share

For testing REST client

http://requestb.in/

http://httpbin.org/

For testing web service

to quickly expose your local web service to web

localtunnel

To test REST API

Postman REST Client for Chrome

To intercept and inspect requests / response

Charles Proxy

Upvotes: 1

Kaushik
Kaushik

Reputation: 2090

For chrome https://chrome.google.com/webstore/detail/advanced-rest-client/hgmloofddffdnphfgcellkdfbfbjeloo

and for mozillA

https://addons.mozilla.org/en-US/firefox/addon/restclient/

You can sent Content Type and then You can use any method get, post , head, put , delete

Upvotes: 0

Related Questions