返回 Skill 列表
extension
分类: 开发与工程无需 API Key

supabase-webhooks-events

实现Supabase webhook签名验证和事件处理。在设置webhook端点、实现签名验证或安全地处理Supabase事件通知时使用。可以通过诸如“supabase webhook”、“supabase events”、“supabase webhook signature”、“handle supabase events”、“supabase notifications”等短语触发。

person作者: jakexiaohubgithub

Supabase Webhooks Events

Prerequisites

  • Supabase webhook secret configured
  • HTTPS endpoint accessible from internet
  • Understanding of cryptographic signatures
  • Redis or database for idempotency (optional)

Instructions

Step 1: Register Webhook Endpoint

Configure your webhook URL in the Supabase dashboard.

Step 2: Implement Signature Verification

Use the signature verification code to validate incoming webhooks.

Step 3: Handle Events

Implement handlers for each event type your application needs.

Step 4: Add Idempotency

Prevent duplicate processing with event ID tracking.

Output

  • Secure webhook endpoint
  • Signature validation enabled
  • Event handlers implemented
  • Replay attack protection active

Error Handling

See {baseDir}/references/errors.md for comprehensive error handling.

Examples

See {baseDir}/references/examples.md for detailed examples.

Resources