shopify-webhooks
Installation
SKILL.md
Shopify Webhooks
When to Use This Skill
- Setting up Shopify webhook handlers
- Debugging signature verification failures
- Understanding Shopify event types and payloads
- Handling order, product, or customer events
Essential Code (USE THIS)
Shopify Signature Verification (JavaScript)
const crypto = require('crypto');
function verifyShopifyWebhook(rawBody, hmacHeader, secret) {
if (!hmacHeader || !secret) return false;