I'm in the midst of testing a new AWS SAM application, and I found a bug that i'm having trouble solving.
I have a route with a simple GET request
/myRoute
and this route support query params such as "mail"
so the full url looks something like this
/myroute?mail=mymail@example.com
aws is creating the proper event for me my problem lies when I have special characters inside my string params for example mymail+bonzo@example.com than what I'll actually get after aws-sam interpret the call is "mymail bonzo@example.com" with a space instead of the special character +.
Any ideas?