shopify webhook integrity check is failing nodejs express
Following this I was getting error - Unhandled promise rejection (rejection id: 2): TypeError: First argument must be a string, Buffer, ArrayBuffer, Array, or array-like object So I changed to var msg = JSON.stringify(req.rawBody); var digest = crypto.createHmac('sha256', APP_SHARED_SECRET) .update(Buffer.from(msg,'utf8'))…