Can I use the login:required feature of app.yaml when I create a totally google separate user login? How? (Google App Engine)
+1
A:
No. The app configuration has no way to know what you consider to be a 'login', so if you're not using the Users API for logins, you need to check if a user is authenticated from within your app. A decorator is commonly used to do this.
Nick Johnson
2009-10-07 16:15:51
Ok, so as expected I can't use the login : required feature.I will start with my decorator, thanks Nick!
VictorSB
2009-10-07 16:41:53