Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to use authentication in RSS feeds using php?

I'm trying to develop a feed for an intranet document management system, so that staff can be notified of new documents. I have actually completed coding it, but there is no way to authenticate the user.

Also I'm not successful in adding the feed to news readers, but works with firefox Live Bookmark.

Any Ideas

Update:

Since I couldn't explain really well, I'll be specific I want it to work inside OutLook RSS Feeds.

Thanks

like image 481
0xdeadbeef Avatar asked May 28 '09 09:05

0xdeadbeef


3 Answers

Well it's not very common, but i read an article about it a while ago

http://labs.silverorange.com/archive/2003/july/privaterss

that might help you out

like image 137
Silfverstrom Avatar answered Oct 16 '22 21:10

Silfverstrom


You may try HTTP authentication (either basic or digest).

As for newsreaders, please clarify what are you doing and what's going wrong.

like image 34
Anton Gogolev Avatar answered Oct 16 '22 20:10

Anton Gogolev


The feed reader has to be able to access the URL of the feed, so if it is only available to people on your network, Google Reader (for example) won't be able to resolve the address and find the feed.

like image 1
Fenton Avatar answered Oct 16 '22 19:10

Fenton