Amazon web services – FastAPI app works locally, but /blogs endpoint causes redirect loop on AWS Lambda deployment
I’ve developed a FastAPI app and deployed it on AWS Lambda as a .zip archive. Locally, when I run: uvicorn src.main:app --reload I can access the /blogs endpoint (http://127.0.0.1:8000/blogs) and it returns the correct data: [ { "title": "blog with…