← 返回
未分类

Skylv Webhook Debugger

Tests and debugs webhooks. Inspects requests and validates responses. Triggers: test webhook, webhook debug, http webhook.
sky-lv
未分类 clawhub v1.0.0 100000 Key: 无需
★ 0
Stars
📥 288
下载
💾 1
安装

概述

Webhook Tester

Overview

Helps test, debug, and validate webhook integrations.

When to Use

  • User asks to "test a webhook" or "debug webhook"

Send Test Payload

$headers = @{ "Content-Type" = "application/json" }

$body = @{ event = "test" } | ConvertTo-Json

Invoke-RestMethod -Uri "https://example.com/webhook" -Method POST -Headers $headers -Body $body

Response Codes

  • 200 OK = success
  • 401 = authentication failed
  • 403 = signature verification failed
  • 429 = rate limited
  • 5xx = server error

Common Testing Tools

  • https://webhook.site - temporary public URL
  • https://requestbin.com - inspect payloads
  • ngrok http 3000 - forward to localhost

版本历史

共 1 个版本

  • v1.0.0 当前
    2026-05-08 02:47 安全 安全

安全检测

暂无安全检测报告