I'm building a lamdba function using java 8. I refer to this example. I try to create a REST API get endpoint. Get by id in particular. I want to have an endpoint like /objects/{objectId}
. I get an 403 response with "message": "Missing Authentication Token"
. Shouldn't it populate proxy
of pathParameters
as the value of objectId? What I missed?
Asked
Active
Viewed 187 times
0

Rostislav V
- 1,706
- 1
- 19
- 31
-
Sounds like an issue with `API Key`. Does this previous answer help? https://stackoverflow.com/questions/40988051/getting-message-forbidden-reply-from-aws-api-gateway – Matt D Sep 27 '18 at 09:54