I have a pound/hash symbol in a query string and while sending the get request with PHP Guzzle 6 it is not being encoded properly. A sample request:
https://10.1.10.1/vmrest/users?query=(alias%20is%20UserWithAPoundSign%2318)
is sent as:
https://10.1.10.1/vmrest/users?query=(alias%20is%20UserWithAPoundSign#18)
I see there was some work in relation to this issue:
How to disable URL encoding in Guzzle 6
but it doesn't look like the pound/hash is accounted for. Is this a bug or something I'm doing wrong?