Hi,
I have a strange bug with query strings.
This is my http file:
GET https://[redacted/path/to/something/?category=tests
Accept-Language: fr
And if I run it, the = gets encoded as %3d and the request fails:
#+RES
array(1) {
["category=tests"]=>
string(0) ""
}
#+END
Running with curl sends the request correctly and the array is populated as expected.
Hi,
I have a strange bug with query strings.
This is my http file:
And if I run it, the
=gets encoded as%3dand the request fails:Running with curl sends the request correctly and the array is populated as expected.