woocommerce-webhooks

Installation
SKILL.md

WooCommerce Webhooks

When to Use This Skill

  • Setting up WooCommerce webhook handlers
  • Debugging signature verification failures
  • Understanding WooCommerce event types and payloads
  • Handling order, product, or customer events
  • Integrating with WooCommerce stores

Essential Code (USE THIS)

WooCommerce Signature Verification (JavaScript)

const crypto = require('crypto');

function verifyWooCommerceWebhook(rawBody, signature, secret) {
  if (!signature || !secret) return false;
Related skills
Installs
88
GitHub Stars
70
First Seen
Feb 5, 2026