我的目标是 JSON 格式的单个文档文件,它来自 50-100 个 MS Word 或 PDF 文档。
有没有办法为“convert_document”命令提供多个文档?我尝试使用 curl 来提供多个 .pdf 或 *.doc 文件,如下所示:
curl -u
"username":"password"
-F "config={\"conversion_target\":\"ANSWER_UNITS\"};type=application/json"
-F "file=@\*.doc;type=application/msword" -X POST
"https://gateway.watsonplatform.net/document-conversion-experimental/api/v1/convert_document"
不幸的是,这给了我一个错误:curl: (26) couldn't open file "*.doc"
我也尝试过-F "file=@file1.doc,file2.doc,file3.doc"
,但这也给出了错误。