I'm setting up a pyramid application where access to ressources can be shared across registered users. I would also like to give access to non-members, using non-trivial links to files or directories.
While I see how to do this for registered members, I'm not sure how to do this with anonymous users. Do I need to create an unprotected view and perform security checks myself ? Maybe a better way would be to append access rights to users sessions using cookies?
Can route factories help me for this purpose? Any other way?