Reputation: 5879
Let's say I had a root app and multiple sub-apps. Would it be possible to share authenticated sessions across them?
I'm using Google App Engine (Python).
Upvotes: 0
Views: 269
Reputation: 881843
If you use tipfy, the wonderful lightweight almost-not-a-framework that @moraes developed specifically for App Engine use, you get many excellent choices for authentication approaches (see here) several of which will let you achieve what you're after.
Upvotes: 4
Reputation: 101149
Not using the built in authentication support - users have to authenticate separately with each application.
Upvotes: 1