The way I can authenticate my users in AppEngine using Google Accounts is simply wonderful.
However, I need to use my custom authentication-login system.
I will have a AppUsers table, with usernames and encrypted passwords.
I read something about sessions on gae, but I need help on starting up my app security.
How can I track my authenticated user session? Setting a cookie?
A beginner.
You can use cookie to do so... It is really not so hard. You can use cookie to track user's authenticated and store the session key in gae datastore.
There is an example (It just show the basic idea, I don't guarantee the code can be used directly)
The Basic User Table:
The Login function
The logout function
When you required user login