views:

159

answers:

1

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
Ok, so as expected I can't use the login : required feature.I will start with my decorator, thanks Nick!
VictorSB