let { hmac, host, shop, timestamp } = req.query;const sign = (content, secret) => {return crypto.createHmac("sha256", secret).update(content).digest("hex");}; if (sign(`host=${host}&shop=${shop}×tamp=${timestamp}`, config.shopifyPartner.secret) ...