I am developing a free API to get JSON
response. Is it possible to limit users accessing my API morethan 10 times in an hour? How can I do that in apache
using .htaccess
or something through cpanel.
Asked
Active
Viewed 38 times
1

Joel James
- 1,315
- 1
- 20
- 37
-
2Since there is no persistent storage on the http server level I'd say you have to do this in your application logic. – arkascha Dec 12 '15 at 08:53
-
@arkascha Thanks for the comment. Actually I wanted to block the request before executing any code. So it is not possible right? – Joel James Dec 12 '15 at 08:59