CURL命令行使用

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

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

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

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

3.CURL 上传附件


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

调用示例(使用curl命令,用FORM表单方式上传一个多媒体文件):
curl -F [email protected] "http://file.api.weixin.qq.com/cgi-bin/media/upload?access_token=ACCESS_TOKEN&type=TYPE"


你可能感兴趣的:(杂类)