-
Notifications
You must be signed in to change notification settings - Fork 837
Help : Rate Limiting by api key values #785
Comments
Hello, how to set the access frequency per minute through key, I want to learn, can you give some pictures to learn
|
Hello, I don't know its right way to do but here how i did it. Created Service, Routes. I need to remind you. After this configuration if you request with another api key. It will get "Invalid authentication credentials" error. Thats where i stuck. I want all other api key request pass through with same rule (like 5 per minute) . |
@pantsel any advice ? |
Hello,
I want to limit requests by rate limiting with api key identifier.
I have like 100+ apikeys and i can limit them by creating individual consumer and adding key auth , rate limit plugin.
I want to rate limit only 5-6 apikeys. All other api keys should work with same rate limit scenario.
I couldn't make this scenario because of key auth plugin.
For more understanding please look at this example :
apikey : abc123 -> rate limit ( 5 per minute) ---> OK
apikey : abc124 -> rate limit (10 per minute) --> OK
apikey : all others -> rate limit ( 100 per minute ) --> NOK . How can i achive that ?
Thanks
BR.
The text was updated successfully, but these errors were encountered: