We have an endpoint for the webhhok. But I dont know how to get the crc
app.post(’/webhook/twitter’, function (request, response) {
var fecha = new Date()
//var respuesta = { “fecha”: fecha.toString(), “nombre”: “prueba post en webhook/twitter” }
var respuesta = { “status”: 200, “data”: “Webhook URL ok” }
//var respuesta=request.body
response.end(300,JSON.stringify(respuesta));
//azurefunctions.postWEBHOOK(respuesta, function (err, flag) {
// // response.end(JSON.stringify(respuesta));
// response.end(respuesta);
//})
});
Perhaps you coul explain
PPA