我遇到了 WhatsApp webhook messages 事件未触发的问题,尽管其他 webhook 测试工作正常(例如
flows
\ security
\ account_alerts
。
环境:
问题详情:
代码/配置尝试:
// Simplified webhook handler (example)
app.post('/webhook', (req, res) => {
const body = req.body;
console.log('Webhook received:', body);
if (body.entry && body.entry[0].changes) {
// Webhook processing logic
}
res.sendStatus(200);
});