New feature
Requirement is as follows
Rate limit as per client id from auth token. (Bearer token for e.g)
Need white listing based on client id in token
I need to use client id from token instead of header. header based implementation not suitable in cases where user can make requests by changing client id .
Is there way to do this ClientRateLimitingMiddleware? I can see some code coupled with middleware (whitelist check and header verification) so cannot extend it.
Please help.
New feature
Requirement is as follows
Rate limit as per client id from auth token. (Bearer token for e.g)
Need white listing based on client id in token
I need to use client id from token instead of header. header based implementation not suitable in cases where user can make requests by changing client id .
Is there way to do this ClientRateLimitingMiddleware? I can see some code coupled with middleware (whitelist check and header verification) so cannot extend it.
Please help.