At the moment I have a implantation with Fastapi that limits on the following endpoint:
@app.get("/v1/endpoint/{parameter}")
@limiter.limit("60/minute")
This is generation limits for varous endpoints, like:
/v1/endpoint/a
/v1/endpoint/b
/v1/endpoint/c
I want the limit to apply for /v1/endpoint/* though. Even with global enforcement it will not.
I can identify users with an get request, could that work as identifier?
Thanks,
bert