django - how to allow RSS aggregators to use feeds available only for logged-in users? -


I have to feed RSS in my own app, which should only be seen by the logged in user. I want to allow users to add these RSS feeds to all aggregators, so I'll need something that works like this: for example supply feed URL with token: so that the token feed is user form It will be logged in to be seen.

Is there a library in Django that will provide such functionality?

Try to create a hash of some unique asset of the user ... like something

md5 ("% s!% S"% (SECRET_KEY, user.username)) Hexdigest ()

PS - I did not test this code but you get the idea


Comments

Popular posts from this blog

c# - How to capture HTTP packet with SharpPcap -

php - Multiple Select with Explode: only returns the word "Array" -

php - jQuery AJAX Post not working -