-
Notifications
You must be signed in to change notification settings - Fork 103
Open
Labels
dependenciesPull requests that update a dependency filePull requests that update a dependency fileenhancementNew feature or requestNew feature or requestideaimprovement
Description
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.
Metadata
Metadata
Assignees
Labels
dependenciesPull requests that update a dependency filePull requests that update a dependency fileenhancementNew feature or requestNew feature or requestideaimprovement