Are you seeing a
In your log when you get the 202 on your POST? The request should be fairly instant.
The only other real difference between mine and yours in Node/JS is that I use
app.get(‘/webhook/’, function(req, res) {
instead.
And I just do
res.send(req.query[‘hub.challenge’]);
Rather than an explicit .status(200)