Description
When query parameters contain special characters like &, =, +, #, they are not being URL encoded correctly.
Steps to Reproduce
- Send request with query param:
search=hello&world
- Server receives broken query string
Expected Behavior
Value should be encoded as search=hello%26world
Labels
bug
Description
When query parameters contain special characters like
&,=,+,#, they are not being URL encoded correctly.Steps to Reproduce
search=hello&worldExpected Behavior
Value should be encoded as
search=hello%26worldLabels
bug