0

我们最近实现了来自 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"

4

2 回答 2

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"
于 2017-02-28T15:19:58.490 回答
1

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

于 2017-02-28T12:40:14.193 回答