tags:

views:

13

answers:

2

Hello stackers,

I am building an API, one of its feature is the use of HTTP POST Hook calls triggered on particular actions.

Without taking the time to set a locale route to be the target of the POST call I was looking for an online service showing live POST to a given URL or some other way of testing POST hooks in my code.

Any advices ?

A: 

You can manually create and test POST requests with Fiddler or the Poster Firefox addon

Fanis
There is also "charles" http://www.charlesproxy.com/ but i was looking for something more 'live'
coulix
I may have misunderstood this, but both of those are "live" in the sense that they show you exactly and immediately what is being POSTed.
Fanis
+1  A: 

http://www.postbin.org/

coulix
Ah, I see now. You want to see what the api will be receiving.
Fanis