Here is the registred webhook.
{
"id": "59fb6f025f9638a2b081201a",
"description": "Trello Webhook Server",
"idModel": "59edd17a48fa712db6465109",
"callbackURL": "https://gitbub-trello-webhook.firebaseapp.com/trelloUserWebhook",
"active": true
}
When i try to hit the callback url in the browser, I get empty output.
{}
I am really trying hard from 2 weeks to get this working please some one help me on this.
Below is the way i am trying to get posted data:
//Code to get user activity on board.
app.get("/trelloUserWebhook", (req, res, next) => {
res.send(req.body);
});