2017-02-28 64 views
0

我們最近使用IBM Watson實現了文檔轉換API。我可以使用網絡文件(www.something.com)作爲輸入。如何在watson的文檔轉換中使用webfiles

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

回答

1

不,你首先需要下載,你要轉換的HTML文件。然後,您可以將其傳遞給文檔轉換服務-F "[email protected]downloadedFile.html"

1

或者,你可以管到STDIN curl命令:

curl 'https://en.wikipedia.org/wiki/Terrestrial_Planet_Finder' | \ 
curl -u $USERPASS -F "[email protected]_config.json" -F [email protected] "$URL/v1/convert_document?version=2017-01-01" 
相關問題