How to enable authorization for rss feed using ASP.NET MVC?

Our store is in the process of converting our internal project management application from ASP.NET Web Forms to ASP.NET MVC.

I would like to provide an RSS feed for our customers about their current problems ... but I would like to do this with some type of authorization, for example. login and password.

Is this possible using ASP.NET MVC or should it be done using some other service like WCF? Sample code will be appreciated .

+4
source share
2 answers

I'm not sure about the best way, but I can think of a few, none of them are super, though.

They all suck because the password (or token) is visible. Perhaps this is considered good if it is https instead of http. I think the first option + https is pretty common though?

+3
source

If private feeds are part of the RSS specification, you should look there for the mechanics of RSS authorization.

I thought about this before for the project and came to the conclusion that secure RSS will never work, because it is not enough to support customers (e.g. google reader).

Sorry, you do not have the full answer, but thought it would help anyway.

0
source

All Articles