因此,我在 MacOS Sierra 上使用bombardier从命令行进行服务器基准测试。在这个例子中,我使用了 1 个连接和 1 个请求,以及两个标头:“授权”和“内容类型”和正文:“{isTemplate:1}”但是服务器没有接收正文。./bombardier -c 1 -n 1 -m PATCH -H "Authorization: Bearer MYBEARERGOESHERE" -H "Content-Type: application/x-www-form-urlencoded" -b "{isTemplate:1}" http://localhost:8082/presentation/6525/update我试过:-b "{isTemplate:1}"
-b "isTemplate:1"有什么想法吗?
1 回答
慕桂英3389331
TA贡献2036条经验 获得超8个赞
刚刚找到解决方案, - 你需要像这样编写主体变量:
-b "isTemplate=1"
所以最终要求:
./bombardier -c 1 -n 1 -m PATCH -H "Authorization: Bearer MYBEARERGOESHERE" -H "Content-Type: application/x-www-form-urlencoded" -b "isTemplate=1" http://localhost:8082/presentation/6525/update
- 1 回答
- 0 关注
- 86 浏览
添加回答
举报
0/150
提交
取消