Very strange. Another thing to try is that the body.json() function is a promise, so you’ll need to await it or read the value on the .then. Something like request.body.json().then((body) => { console.log(body) });
Very strange. Another thing to try is that the body.json() function is a promise, so you’ll need to await it or read the value on the .then. Something like request.body.json().then((body) => { console.log(body) });