I am using Express, however those are indeed the headers I receive with the POST request from Twitch. I… think?
This is the code I use:
app.post(‘/events’, async (req, res) => {
console.log(req.body)
console.log(req.headers)
res.json({ statusCode: 200 })
})
If I try ['twitch-eventsub-message-id'] I simply get an undefined.
Am I doing something wrong?