With the Webhook Tester app, you can easily test HTTP webhooks and other types of HTTP requests.
Upon visiting the app, you get a random URL to send your requests and webhooks to, and they're all logged in the app – instantly. Check it out at https://webhook.site.
Built by Simon Fredsted (@fredsted).
The app was built with Laravel for the API and Angular.js for the frontend SPA.
Thanks to da-n for creating the Docker image.
- Patreon: https://www.patreon.com/webhooktester
- Bitcoin address: 1Maf64K9Wkpy7oBGEtqEda8H1H2drLSUuF
- Paypal: https://paypal.me/fredsted
- PHP 7
- Redis
- Composer
- Web server
Version 1.1 switched to using Redis for storage. If you want to use SQLite, you can use version 1.0.
- Run the following commands:
composer install
cp .env.example .env
- adjust settings as neededphp artisan key:generate
- Setup virtual host pointing to the /public folder. DigitalOcean has a guide on how to configure nginx.
A Dockerfile is available at hub.docker.com: https://hub.docker.com/r/dahyphenn/webhook.site/.
You can use laravel-echo-server or Pusher to enable realtime updates. Take a look at the .env.example
on how to configure it.
For laravel-echo-server, the app expects socket.io to be available at the /socket.io
path. This can be done with nginx like so:
location /socket.io {
proxy_pass http://127.0.0.1:6001;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
}