How can I protect the data my service provides to my application from tools like Fiddler? Or at least prevent someone making many requests to my service (like maximum requests per minute, IP/MAC Address blacklist, etc).
Asked
Active
Viewed 395 times
0
-
possible duplicate of [How to prevent data-scraping a valuable data web service?](http://stackoverflow.com/questions/14350298/how-to-prevent-data-scraping-a-valuable-data-web-service) – EricLaw Jan 08 '14 at 20:59
-
I would recommend looking into this conversation: http://stackoverflow.com/questions/20817300/how-to-throttle-requests-in-a-webapi-controller/23750174#23750174 – lenny12345 May 24 '14 at 13:31
1 Answers
2
You could use the Throttling Handler for ASP.NET Web API announced by Stefan Prodan recently. Details can be found in the article here.

Jon Susiak
- 4,948
- 1
- 30
- 38