如何使用文档转换服务转换多个文档。
我有50-100个MS Word和PDF文档,我想使用convert_document
API方法转换?
例如,你能提供多个像这样的.pdf或*.doc文件吗?:
curl -u "username":"password" -X POST
-F "config={"conversion_target":"ANSWER_UNITS"};type=application/json"
-F "file=@*.doc;type=application/msword"
"https://gateway.watsonplatform.net/document-conversion-experimental/api/v1/convert_document"
不幸的是,这导致了一个错误:curl:(26)无法打开文件"*.doc"。我也尝试过"file=@file1.doc,file2.doc,file3.doc",但也会出现错误。
服务一次只接受一个文件,但您可以多次调用它。
#!/bin/bash
USERNAME="<service-username>"
PASSWORD="<service-password>"
URL="https://gateway.watsonplatform.net/document-conversion-experimental/api/v1/convert_document"
DIRECTORY="/path/to/documents"
for doc in *.doc
do
echo "Converting - $doc"
curl -u "$USERNAME:$PASSWORD"
-F 'config={"conversion_target":"ANSWER_UNITS"};type=application/json'
-F "file=@$doc;type=application/pdf" "$URL"
done
文档转换文档和API参考。