如何在Watson的文档转换中使用WebFiles



我们最近从ibm watson.in实现了文档转换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"

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

将其传递给文档转换服务

另外,您可以将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"

相关内容

  • 没有找到相关文章

最新更新