Fully customizable logins in Google App Engine

Can I use the login: required function in app.yaml when I create a completely separate Google username? How? (Google App Engine).

+4
source share
1 answer

No. There is no way in the application configuration to find out what you think is a β€œlogin”, so if you are not using the user API to log in to the system, you need to check if the user is verified from your application. Usually a decorator is used for this.

+4
source

All Articles