stefanprodan / WebApiThrottle

ASP.NET Web API rate limiter for IIS and Owin hosting

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

how to use Endpoint throttling with difference HTTP Method (one with Querystring and another without querystring) but action name is same

shajinAndroid opened this issue · comments

Hi stefan,

Currently, I have same Endpoint name but it has the different HTTP Method (one with Querystring and another without query string)

this is my Endpoint example:
GET http://localhost:12345/api/stock?stockId=1
and
POST http://localhost:12345/api/stock

How to rate limit for the GET request alone.