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
When specifying a header option whose value ends with an =, bat incorrectly interprets that as a query param, even when escaped.
=
bat
➜ bat GET :8001/v1/me/entity 'X-APIKey:asdfasdfa\=' GET /v1/me/entity?X-APIKey%3Aasdfasdfa%5C= HTTP/1.1 Host: localhost:8001 Accept: application/json Accept-Encoding: gzip, deflate User-Agent: bat/0.1.0
The text was updated successfully, but these errors were encountered:
unfortunately this pr breaks queries with ":" into headers. I cannot think of away to fixes this without completely changing the parsing 😩
Sorry, something went wrong.
No branches or pull requests
When specifying a header option whose value ends with an
=
,bat
incorrectly interprets that as a query param, even when escaped.The text was updated successfully, but these errors were encountered: