kraymer
kraymer

Reputation: 3424

How to handle different classes of users in GAE?

I plan to use Google Accounts to authenticate users of my GAE app.
As i understand it, all owners of a gmail adress are considered equal and can be authentified. My app providing a free trial mode that requires no login, i'm only interested to authentify my paying customers.

Maybe I miss something, but the only distinction between users mentioned in the docs is between admins/non admins.

What is the common practice to authenticate a specific class of users (in my case: paying users) in GAE?

Upvotes: 1

Views: 57

Answers (1)

user784435
user784435

Reputation:

Have a look at gae-biolerplate, it shows how to create a user class using different logins

If you want to have extra information on users use a new model ie UserExtra to add information like ie paid etc

link to boilerplate

Upvotes: 1

Related Questions