我想将订单发送给印刷公司(第三方)。为此,我创建了一个应用程序。 我在快递中添加了此代码,
router.post('/webhooks/orders/create', (req, res) => {
console.log(' We got an order!');
res.sendStatus(200);
});
我在Shopify的管理端创建了Webhook
现在,当我单击“发送测试通知”时,我得到了
POST / webhooks / orders / create 404 155.897 ms-3196
我引用了此链接https://medium.com/@scottdixon/verifying-shopify-webhooks-with-nodejs-express-ac7845c9e40a