I am following the youtube video : ep 1: How to use AWS API Gateway to expose AWS DynamoDB database backend. I am using "selectdate" instead of "pageId" . When I test the api GET I get the desired output with path variable {selectdate} as November 3, 2018 and the corresponding attributes from the Dynamodb.
/dgmvisit3/{selectdate} - GET -
Method Test Make a test call to your method with the provided inputPath {selectdate}
November 3, 2018
However, when I test in the browser I do not get any output. The URL Changes.
https:// \< api url> /prod/dgmvisit3/November 3, 2018
changes to :
https:// \< api url >
/prod/dgmvisit3/November%203,%202018
How do I get the same output as Test ?