我有一个包含一些参数的 HEAD restAPI。
例子:
HEAD http://server:port/myservice/rest/v0.1/myStore?storeid='123'
- 我
/myservice/rest/v0.1/myStore
在 Http 请求的路径中添加了。 - 将方法更改为
HEAD
. storeid=123
在Send Parameters With the request
部分中添加了参数。
当我执行 JMeter 脚本时,它不会发送带有路径的参数。它显示 Request 为http://server:port/myservice/rest/v0.1/myStore
而不是
http://server:port/myservice/rest/v0.1/myStore?storeid='123'
.
注意:如果我将方法更改为 GET,那么它工作正常。
但我的要求是 HEAD 请求。