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
Post a Comment