Live data from Hacker News

Webhook Tester

webhook.site

31–39 of 39 posts

Re: Webhook Tester

#33
post #22

One thing I've wanted on tools like this is an API to query what requests have hit your particular endpoint which would be useful for unit testing applications which use webhooks.

https://www.runscope.com/docs/request-capture paired with https://www.runscope.com/docs/api/messages can do that.

Or use http://blog.runscope.com/posts/monitor-your-webhook-workflow...

Re: Webhook Tester

#35

GET requests are coming through with 'content-length: 0' when that header was not sent. Some other headers are not coming through, e.g. `te: gzip, deflate` Otherwise, trying to use HTTPS instead of HTTP takes me to "Simon’s Filedump"

HTTPS should work now! (Thanks Letsencrypt!)

Re: Webhook Tester

#37
Very cool! Note that your Laravel installation is in debug mode though.

When you make a request with a non-supported HTTP verb, you get the full Laravel error message back instead of just an empty 405.

Are you disallowing verbs on purpose?

Re: Webhook Tester

#38
post #23

Shameless plug: https://requesthub.xyz/ Let's you transform input data with jq and redirect the webhook to another endpoint. Kind of make-your-own Zapier. Also featuring replays.

This is really neat. The ability to replay and the transformation stuff is great

Re: Webhook Tester

#39
Nice. I created https://logrequest.com, originally for my own use. Supports custom responses, ssl and cors which requestb.in didn't.

Looking at this thread there seems like a lot of similar (and better) tools so maybe I didn't look hard enough before deciding to hack something together :)

Post reply on HN