I have an alert in tradingview that send a webhook with a request to my server with a plain body that has some info. the webhook sends PLAIN TEXT, It doecnt sends JSON data.
I was wondering if there is any way to get that plain text data
This is the JSON webhook
Then this is the code that I have
const express = require('express');
const app = express();
app.post('/webhook', (req, res) => {
})
app.listen(8080, () => {console.log("listening on port 8080")})