Multi-value query string params are not supported
ENDPOINT?sections=90§ions=130
Imposter request:
{
"request": {
"method": "GET",
"endpoint": "/search",
"params": {
"sections": "130"
}
},
It only finds the first value i.e. 90, but never the second.
Also tried the PHP-way sections[]=90§ions[]=130 - this does nothing at all, the param would probably be sections[].
Suggestion:
"params": {
"sections": ["90","130"]
}
Or maybe some other way to work with the full query string.
Multi-value query string params are not supported
ENDPOINT?sections=90§ions=130Imposter request:
{ "request": { "method": "GET", "endpoint": "/search", "params": { "sections": "130" } },It only finds the first value i.e. 90, but never the second.
Also tried the PHP-way
sections[]=90§ions[]=130- this does nothing at all, the param would probably besections[].Suggestion:
Or maybe some other way to work with the full query string.