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 a year 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 a year ago
Relevant content
- AWS OFFICIALUpdated 8 months ago
- AWS OFFICIALUpdated 10 months ago
- AWS OFFICIALUpdated a year 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.