CURL命令行使用

1. CURL 发送磁盘上面的JSON文件

[html] view plaincopy

  1. 如  

  2. curl -X POST  -H 'content-type: application/json'  -d @myjsonfile.txt http://some.url/param  

2. CURL在命令行直接发送JSON结构数据

[html] view plaincopy

  1. curl -i -H 'content-type: application/json' -X POST -d '{\"screencast\":{\"subject\":\"tools\"}}' http://localhost:3570/index.php  


3.CURL 上传附件

[html] view plaincopy

  1. curl  -F "blob[email protected];type=text/plain"  "http://XXX/score?leaderboard_id=7778a8143f111272"  

  2.   

  3. 调用示例(使用curl命令,用FORM表单方式上传一个多媒体文件):  

  4. curl -F media[email protected] "http://file.api.weixin.qq.com/cgi-bin/media/upload?access_token=ACCESS_TOKEN&type=TYPE"  



你可能感兴趣的:(CURL命令行使用)