Matthew H
Matthew H

Reputation: 5879

GAE - Sharing Authentication Across Apps

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

Answers (2)

Alex Martelli
Alex Martelli

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

Nick Johnson
Nick Johnson

Reputation: 101149

Not using the built in authentication support - users have to authenticate separately with each application.

Upvotes: 1

Related Questions