You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some APIs, unfortunately, when there are multiple values allowed passed to the same query param, want user to pass that query param multiple times in the same request, so e.g.,
https://httpbin.org?a=5&a=6
instead of the more reasonable
https://httpbin.org?a=5,6
The Solr HTTP API is another case - where they expect multiple query params of the same name
Would be great if there was a way to allow param_set to set multiple keys of the same name
The text was updated successfully, but these errors were encountered:
Right now:
Some APIs, unfortunately, when there are multiple values allowed passed to the same query param, want user to pass that query param multiple times in the same request, so e.g.,
https://httpbin.org?a=5&a=6
instead of the more reasonable
https://httpbin.org?a=5,6
The Solr HTTP API is another case - where they expect multiple query params of the same name
Would be great if there was a way to allow
param_set
to set multiple keys of the same nameThe text was updated successfully, but these errors were encountered: