
curl
fabbymee
fabbymee.com
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
使用CURL POST参数
https://davidwalsh.name/curl-post-file POSTing Form Data with cURL Start your cURL command with curl -X POST and then add -F for every field=value you want to add to the POST: curl -X POST翻译 2017-04-09 13:30:26 · 28302 阅读 · 0 评论 -
curl post 接口测试
curl -d 'data={"para1":"value1" , "para2":value2}' -X POST "http://ip:8800/" data传递参数,package传送文件 curl -F 'package=@a.txt' -F 'data={"para1":"value1" , "para2":value2}' -X POST "http://ip:880原创 2017-03-15 17:16:49 · 2364 阅读 · 0 评论 -
curl 在HEAD请求中加入Authenticaion
curl -k -i -H 'content-type:application/json' -H 'Authentication:Token t=12345678' -d '{"ids":["22"]}' "https://domain.com"原创 2017-05-19 17:28:39 · 741 阅读 · 0 评论 -
curl http get
curl -i -u 'username:password' -X GET "http://domain.com/api/b/status?id=10725&dy=true"原创 2017-05-12 18:31:15 · 322 阅读 · 0 评论 -
curl post json数据
curl -X POST \ http://domaim.com \ -H 'Content-Type: application/json' \ -d '{ "authentication": { "dspId": "1111", "token": "xxxxxx" }, "advertiserIds":[ "22" ] }'原创 2018-07-20 09:36:15 · 4870 阅读 · 0 评论