转自:
https://www.cnblogs.com/xiaochina/p/9750851.HTML
问题描述:linux用命令模拟接口,对接口判断!post文件xml/Json
问题解决:cur很好地解决此问题!
#curl post xml报文
echo ‘xxxx ‘| curl -X POST -H ‘Content-type:text/xml‘ -d @- http://1.1.1.1:8081/loginregistration/register
cat 1.xml | curl -X POST -H ‘Content-type:text/xml‘ -d @- http://1.1.1.1::8081/httpInvokeServlet
注解: xxxx是xml报文内容 1.xml 报文文件 @- 读取管道符内容
#curl post Json 报文
curl -H "Content-Type:application/Json" -X POST --data ‘xxxx‘ http://1.1.1.1:18080/
cat 1.Json | curl -H "Content-Type:application/Json" -X POST -d @- http://1.1.1.1:8081/httpInvokeServlet
注解: xxxx是Json报文内容 1.Json 报文文件 @- 读取管道符内容
时间:2019-03-28 11:02:52 阅读(21) 总结以上是内存溢出为你收集整理的curl模拟post json或post xml文件全部内容,希望文章能够帮你解决curl模拟post json或post xml文件所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)