Can I use the login:required feature of app.yaml when I create a totally google separate user login? How? (Google App Engine)
|
|
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. |
||
|
