With this setting, the variable is set to null no matter what querystring you enter in the URL.
2
-
where is the question ? please add more informationAmit Baranes– Amit Baranes2019-10-27 07:34:56 +00:00Commented Oct 27, 2019 at 7:34
-
For example, even if I access /api/v1/member/test?q=1234, the querystringparameters will be null.user212942– user2129422019-10-27 12:37:48 +00:00Commented Oct 27, 2019 at 12:37
Add a comment
|
2 Answers
Here is two possible solutions
Api call: /api/v1/member?q=1234.
Lambda function : event.queryStringParameters.q
Api call: /api/v1/member/1234.
Lambda function: event.pathParameters['proxy+']
1 Comment
user212942
My problem is event.queryStringParamete is always null also on your first solution.

