如何在watson的文档转换中使用webfiles

时间:2017-02-28 09:19:44

标签: curl watson document-conversion

我们最近实现了IBM Watson的文档转换API。我可以使用Web文件(www.something.com)作为输入。

curl -X POST -u "username":"password" -F config="{\"conversion_target\":\"answer_units\"}" -F "file=@www.something.com/readme.html;type=text/html" "https://gateway.watsonplatform.net/document-conversion/api/v1/convert_document?version=2015-12-15"

2 个答案:

答案 0 :(得分:1)

不,您首先需要下载要转换的HTML文件。然后,您可以将其作为-F "file=@downloadedFile.html"传递给文档转换服务。

答案 1 :(得分:1)

或者,您可以将STDIN传递给curl命令:

curl 'https://en.wikipedia.org/wiki/Terrestrial_Planet_Finder' | \
curl -u $USERPASS -F "config=@dcs_config.json" -F file=@- "$URL/v1/convert_document?version=2017-01-01"