Totally custom logins in Google App Engine

authentication, google-app-engine, web-applications

Solution

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.

Problem

Can I use the login:required feature of app.yaml when I create a totally Google separate user login? How? (Google App Engine).

Original source