I'm implementing a WOPI server in an attempt to integrate with Office Online. When WOPI client calls PutFile method (to save a file) it is sending an empty request (req.body.length === 0). Here's the Node/Express code:
app.post('/wopi/files/:fileId/contents', function (req, res) {
console.log(req.body.length);
...
Any suggestions are highly appreciated.