I have strange problem, I have special characters(=>) in URL which is more of business requirement(sorry, so I can't change it).
Here is specific scenario- I'm using nginx as web server and proxy passing it to App server(typical setup).
GET {{url}}/rest/77=>711
When this request goes to nginx, it just responds back with 400 Bad request and doesn't pass the request to App server.
When, I call the same service directly to App server bypassing nginx, it works fine.
GET {{url}}:8080/rest/77=>711
I have also tried encoding 77=>711
, but no luck.
I'm using POSTMAN to send these request and as far as I know, POST by default does all the encoding.
A full solution or any pointers to resolve this issue would be greatly appreciated.
Thank you for reading the question.