estou tendo um problema ao cadastrar uma webhook, está dando: A URL informada respondeu com o código HTTP 401
Copiei o código
js
app.post('/webhook', (request, response) => {
if (request.socket.authorized) {
response.status(200).end();
}
else {
response.status(401).end();
}
});
app.post('/webhook', (request, response) => {
if (request.socket.authorized) {
response.status(200).end();
}
else {
response.status(401).end();
}
});
Quando printo request.socket.authorized ele retorna undefined