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