Simple Webhook adalah aplikasi Python ringan untuk menerima, menampilkan, dan memantau HTTP Request.
175
Simple Webhook adalah aplikasi Python ringan untuk menerima, menampilkan, dan memantau HTTP Request secara realtime. Dibuat menggunakan framework Flask + SSE (Server-Sent Events). Aplikasi ini mendukung multi-session, sehingga setiap pengguna memiliki URL webhook terpisah dan log yang tidak tercampur.
docker pull iruwl/simple-webhook:v1
docker run -d \
-p 8080:8080 \
--name simple-webhook \
iruwl/simple-webhook:v1
http://localhost:8080
curl -X POST -H "Content-Type: application/json" \
-d '{"hello":"world"}' \
http://localhost:8080/webhook/<SESSION_ID>
curl -X POST -d "user=test&pass=1234" \
http://localhost:8080/webhook/<SESSION_ID>
curl -X POST -F file=@/etc/hosts \
http://localhost:8080/webhook/<SESSION_ID>
Content type
Image
Digest
sha256:c5b311788…
Size
44.9 MB
Last updated
8 months ago
docker pull iruwl/simple-webhook:v2