I am having a rest API where end point is like this:
/private/items/query
where I am taking id as query param so url is like:
http://localhost:8081/private/items/query?id=item1234
Now when the item contains %
symbol its not reaching as query param in my APIs properly e.g. in case of item%21
what I am receiving is item!
.
How can this problem be fixed?