stefanprodan / WebApiThrottle

ASP.NET Web API rate limiter for IIS and Owin hosting
MIT License
1.28k stars 275 forks source link

CORS #128

Open davidhendrickmb opened 5 years ago

davidhendrickmb commented 5 years ago

Hi there, When I use this library, it breaks my CORS policy, for example

var corsAttr = new EnableCorsAttribute("*", "*", "*"); config.EnableCors(corsAttr);

Is there something I can do to fix this?

Thanks, David

avrahamcool commented 5 years ago

I'm also interested to know how can we have CORS & Throttling enabled.