我正在使用html文件配置运行用于html文档转换的curl脚本。以下是代码:
curl -x POST -u "Username":"Password" -F "config=@config.json" -F "file=@example.html;type=text/html" "https://gateway.watsonplatform.net/document-conversion/api/v1/index_document?version=2015-12-15"
我收到错误 - Could not resolve proxy: POST
。如果有人可以帮忙吗?
注意 - 我已安装curl 7.46
答案 0 :(得分:8)
我最近正在学习curl,也遇到了这种情况。实际上,原因是-x
应该替换为-X
。
答案 1 :(得分:0)
您的错误似乎是一个代理配置问题。
尝试使用--noproxy
标志:
示例:
curl --noproxy 127.0.0.1 +your POST
或尝试设置您的代理,就像我的例子:
curl --proxy <[protocol://][user:password@]proxyhost[:port]> +your POST
Obs。:使用指定的HTTP代理。如果未指定端口号,则默认为1080.
答案 2 :(得分:-2)
curl -X POST "yourwebsite.js"