curl模拟post json或post xml文件

curl模拟post json或post xml文件,第1张

概述转自: 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:

转自:

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文件所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/1032055.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-24
下一篇 2022-05-24

发表评论

登录后才能评论

评论列表(0条)

保存