2 Answers
- Newest
- Most votes
- Most comments
0
We solved the problem by decoding the parameters on backend application. "Thanks" to API Gateway there are no configuration options for this particular issue
answered 2 years ago
0
It seems like URL encoding by default would be the expected behavior. If you have multiple values for the query string parameter (i.e. an array or collection) perhaps you should:
https://mydomain.com/hello/world?key=value1&key=value2&key=value3
answered 2 years ago
Relevant content
- asked 2 years ago
- asked 4 months ago
- AWS OFFICIALUpdated 2 years ago
- AWS OFFICIALUpdated 2 years ago
- AWS OFFICIALUpdated 2 years ago
- AWS OFFICIALUpdated a year ago
Thanks for the answer. We have quite a lot of query params, using the suggested way will cause our urls to be huge. I would love to have a way to disable it or at least provide a parameter mapping to overwrite the query params with decoded ones.