We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
With bat is it possible to build a HTTP request that parameter arrays?
Example: bat :8888 foo=val1 foo=val2 bar=val3 should result in a URL like localhost:8888?foo=val1&foo=val2&bar=val3
bat :8888 foo=val1 foo=val2 bar=val3
localhost:8888?foo=val1&foo=val2&bar=val3
Currently when I tried using that above syntax I only get one parameter with what ever the last value was.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
With bat is it possible to build a HTTP request that parameter arrays?
Example:
bat :8888 foo=val1 foo=val2 bar=val3
should result in a URL likelocalhost:8888?foo=val1&foo=val2&bar=val3
Currently when I tried using that above syntax I only get one parameter with what ever the last value was.
The text was updated successfully, but these errors were encountered: