Swagger with strip_prefixes #6092
-
Hi there. I have a lambda function with I have enabled swagger for the Api app = APIGatewayHttpResolver(strip_prefixes=["/api/v1"],enable_validation=True) and I have a endpoint like this @router.get("/databases") The problem is that on the swagger page it does not add the prefix /api/v1 to the endpoint addresses. Is there something that I'm missing? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
Olá @paulorangeljr, tudo bem?!
Can you explain to me a little bit what you're doing here? Are you using custom domains with this prefix as path or are you expecting us to add this prefix? Sorry, but I got a little confused here. |
Beta Was this translation helpful? Give feedback.
-
Thanks @leandrodamascena you got it. The strip prefix was used as a default route prefix. So on every endpoint on apigw I’ve added that. And what you sent about swagger it worked |
Beta Was this translation helpful? Give feedback.
Thanks for adding more details @paulorangeljr.
I will break down your code and explain what Powertools is doing and the result.
In this code block, Powertools is stripping the
/api/v1
prefix from the path (a key from the event) that APIGW is sending to Lambda. This is …