bwobbones
bwobbones

Reputation: 2588

AWS API Gateway Custom Authorizer lambda is not triggering

I'm trying to implement Basic authentication, using this article as inspiration:

https://medium.com/@Da_vidgf/http-basic-auth-with-api-gateway-and-serverless-5ae14ad0a270

The application sets up as described:

I can test my custom authorizer using the Test feature under Authorizers successfully but when I call the API using curl (or anything else) there is no authentication. The authorizer lambda doesn't get called and there are no logs in CloudWatch.

Any idea where I could look next?

Upvotes: 2

Views: 1208

Answers (1)

Tuan Vo
Tuan Vo

Reputation: 2085

Remember to deploy API Gateway to apply settings before test.

Upvotes: 1

Related Questions