-
Notifications
You must be signed in to change notification settings - Fork 12
Throttling
José Bonnet edited this page Feb 22, 2019
·
1 revision
This wiki page details the design of throtling in 5GTANGO's V&V and SP.
Any API nowadays needs to protect itself against abuse in its usage.
We plan to re-use what we have built for SONATA.
We need to initialize two different kinds of throttles:
- Anonynous requests: these are the requests that have to be made without yet having a way to authenticate the requestor. Good examples of this kind of requests are the user registration (since the user is registering, it does not yet posess a way to authenticate him/herself with the system) and the user login (for the same reason);
- Authenticated requests: these are the requests that have some form of authentication already done.