windows环境下curl报错:Protocol “‘http” not supported or disabled in libcurl
原因:window命令行不支持单括号引用
解决方案:将单括号删除
例如:curl ‘http://localhost:9200/?pretty’
在window命令行应改为:curl http://localhost:9200/?pretty
curl在windows上使用的注意事项:
curl -XPOST http://localhost:9200/video/md/1 -d “{
“tvId\”:\”1001\”,\”name\”:\”test\”,\”order\”:1}” -d 内的参数需要用双引号包起来,数据中的双引号需要转义
在学习操作elasticSearch时在windows用curl,参考:http://www.cnblogs.com/Fred1987/p/6020145.html
Reference
写在最后
欢迎大家关注鄙人的公众号【麦田里的守望者zhg】,让我们一起成长,谢谢。
All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.
Comment