curl进行命令post formdata json file
json
适用于现代 C++ 的 JSON。
项目地址:https://gitcode.com/gh_mirrors/js/json
免费下载资源
·
curl进行命令post formdata json file
post formdata多个参数
多个参数可以使用-F
进行串接
curl -X POST -F 'accountId=xxxxxx' -F 'meetingId=xxxx' -F 'type=1' http://192.168.10.126:8088/api/web/xxxx/checkState
post json带头部
curl -X POST -H 'Content-Type: application/json' -d '{"username":"davidwalsh","password":"something"}' http://xxxx/login
post文件
curl -X POST -F 'image=@/path/to/pictures/picture.jpg' http://xxxx/upload
POST application/x-www-form-urlencoded
curl -d "param1=value1¶m2=value2" -X POST http://localhost:3000/data
or
curl -d "param1=value1¶m2=value2" -H "Content-Type: application/x-www-form-urlencoded" -X POST http://localhost:3000/data
GitHub 加速计划 / js / json
18
5
下载
适用于现代 C++ 的 JSON。
最近提交(Master分支:2 个月前 )
6be4e856
3 天前
663058e7
6 天前
更多推荐
已为社区贡献10条内容
所有评论(0)