在Azure函数中接收Docx并返回纯文本

时间:2018-08-11 05:55:15

标签: c# ms-word azure-functions

我正在尝试创建一个Azure函数,以从http请求中接收一个.doc文件,并将其作为纯文本返回。例子,有人能成功吗?

我尝试将req.body读取为字符串,然后将其直接转换为文档,但读取最终为空字符串。

string requestBody = new StreamReader(req.Body).ReadToEnd();

WordprocessingDocument wordprocessingDocument =
       WordprocessingDocument.Open(requestBody, true);

对于菜鸟的任何帮助将不胜感激。

0 个答案:

没有答案