Can you tell Play Framework
to call an exact URL without messing around with the URL?
I want to do a GET Request with empty values.
However while inspecting the request done by Play, even though I have hand written an exact URL the Play Framework destroys my URL and make one up by itself.
An example would be something like:
- My handwritten request:
http://address/?id=&filter=
- Play frameworks request:
http://address/?id&filter
I'm well familiar with that the equals sign is optional for empty values but this is of no interest when the endpoint exposing the rest API don't.